Sha256: 2cfe526643436df07247cc2583e1d097b247411185952132433127a159527669
Contents?: true
Size: 609 Bytes
Versions: 60
Compression:
Stored size: 609 Bytes
Contents
// Copyright 2023 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. extern crate zerocopy; use zerocopy::{transmute_mut, AsBytes}; fn main() {} fn transmute_mut<T: AsBytes + FromBytes>(t: &mut T) -> &mut u8 { // `transmute_mut!` requires the source type to be concrete. transmute_mut!(t) }
Version data entries
60 entries across 20 versions & 1 rubygems