Sha256: 1d54c62a9f4682a1ae4174cee9c73c5f0986623f7bbb069c1bed78b82be36989

Contents?: true

Size: 1.31 KB

Versions: 20

Compression:

Stored size: 1.31 KB

Contents

// Copyright 2022 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#![allow(warnings)]

#[macro_use]
mod util;

use std::{marker::PhantomData, option::IntoIter};

use {
    static_assertions::assert_impl_all,
    zerocopy::{DstLayout, KnownLayout},
};

use crate::util::AU16;

#[derive(KnownLayout)]
struct Zst;

assert_impl_all!(Zst: KnownLayout);

#[derive(KnownLayout)]
struct One {
    a: bool,
}

assert_impl_all!(One: KnownLayout);

#[derive(KnownLayout)]
struct Two {
    a: bool,
    b: Zst,
}

assert_impl_all!(Two: KnownLayout);

#[derive(KnownLayout)]
struct TypeParams<'a, T, I: Iterator> {
    a: I::Item,
    b: u8,
    c: PhantomData<&'a [u8]>,
    d: PhantomData<&'static str>,
    e: PhantomData<String>,
    f: T,
}

assert_impl_all!(TypeParams<'static, (), IntoIter<()>>: KnownLayout);
assert_impl_all!(TypeParams<'static, AU16, IntoIter<()>>: KnownLayout);

// Deriving `KnownLayout` should work if the struct has bounded parameters.

#[derive(KnownLayout)]
#[repr(C)]
struct WithParams<'a: 'b, 'b: 'a, const N: usize, T: 'a + 'b + KnownLayout>(
    [T; N],
    PhantomData<&'a &'b ()>,
)
where
    'a: 'b,
    'b: 'a,
    T: 'a + 'b + KnownLayout;

assert_impl_all!(WithParams<'static, 'static, 42, u8>: KnownLayout);

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
wasmtime-30.0.2 ./ext/cargo-vendor/zerocopy-derive-0.7.35/tests/struct_known_layout.rs
wasmtime-29.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.35/tests/struct_known_layout.rs
wasmtime-28.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.35/tests/struct_known_layout.rs
wasmtime-27.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.35/tests/struct_known_layout.rs
wasmtime-26.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.35/tests/struct_known_layout.rs
wasmtime-25.0.2 ./ext/cargo-vendor/zerocopy-derive-0.7.35/tests/struct_known_layout.rs
wasmtime-25.0.1 ./ext/cargo-vendor/zerocopy-derive-0.7.35/tests/struct_known_layout.rs
wasmtime-25.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.35/tests/struct_known_layout.rs
wasmtime-24.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.35/tests/struct_known_layout.rs
wasmtime-23.0.2 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/struct_known_layout.rs
wasmtime-22.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/struct_known_layout.rs
wasmtime-21.0.1 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/struct_known_layout.rs
wasmtime-20.0.2 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/struct_known_layout.rs
wasmtime-20.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/struct_known_layout.rs
wasmtime-18.0.3 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/struct_known_layout.rs
wasmtime-17.0.1 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/struct_known_layout.rs
wasmtime-17.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/struct_known_layout.rs
wasmtime-16.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/struct_known_layout.rs
wasmtime-15.0.1 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/struct_known_layout.rs
wasmtime-15.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/struct_known_layout.rs