Sha256: 57ff0106151dc34f2e14be90ca73c1c7e6791215683b28fc68abd2deed90fedb

Contents?: true

Size: 932 Bytes

Versions: 20

Compression:

Stored size: 932 Bytes

Contents

// Copyright 2019 The Fuchsia Authors
//
// Licensed under a BSD-style license <LICENSE-BSD>, Apache License, Version 2.0
// <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0>, or the MIT
// license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your option.
// This file may not be copied, modified, or distributed except according to
// those terms.

use zerocopy::{AsBytes, FromBytes, FromZeroes, KnownLayout, Unaligned};

// These derives do not result in E0446 as of Rust 1.59.0, because of
// https://github.com/rust-lang/rust/pull/90586.
//
// This change eliminates one of the major downsides of emitting `where`
// bounds for field types (i.e., the emission of E0446 for private field
// types).

#[derive(KnownLayout, AsBytes, FromZeroes, FromBytes, Unaligned)]
#[repr(C)]
pub struct Public(Private);

#[derive(KnownLayout, AsBytes, FromZeroes, FromBytes, Unaligned)]
#[repr(C)]
struct Private(());

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/priv_in_pub.rs
wasmtime-29.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.35/tests/priv_in_pub.rs
wasmtime-28.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.35/tests/priv_in_pub.rs
wasmtime-27.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.35/tests/priv_in_pub.rs
wasmtime-26.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.35/tests/priv_in_pub.rs
wasmtime-25.0.2 ./ext/cargo-vendor/zerocopy-derive-0.7.35/tests/priv_in_pub.rs
wasmtime-25.0.1 ./ext/cargo-vendor/zerocopy-derive-0.7.35/tests/priv_in_pub.rs
wasmtime-25.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.35/tests/priv_in_pub.rs
wasmtime-24.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.35/tests/priv_in_pub.rs
wasmtime-23.0.2 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/priv_in_pub.rs
wasmtime-22.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/priv_in_pub.rs
wasmtime-21.0.1 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/priv_in_pub.rs
wasmtime-20.0.2 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/priv_in_pub.rs
wasmtime-20.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/priv_in_pub.rs
wasmtime-18.0.3 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/priv_in_pub.rs
wasmtime-17.0.1 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/priv_in_pub.rs
wasmtime-17.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/priv_in_pub.rs
wasmtime-16.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/priv_in_pub.rs
wasmtime-15.0.1 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/priv_in_pub.rs
wasmtime-15.0.0 ./ext/cargo-vendor/zerocopy-derive-0.7.32/tests/priv_in_pub.rs