• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2023 The Fuchsia Authors
2 //
3 // Licensed under a BSD-style license <LICENSE-BSD>, Apache License, Version 2.0
4 // <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0>, or the MIT
5 // license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your option.
6 // This file may not be copied, modified, or distributed except according to
7 // those terms.
8 
9 extern crate zerocopy;
10 
11 use zerocopy::{transmute_mut, FromBytes, Immutable, IntoBytes};
12 
main()13 fn main() {}
14 
transmute_mut<T: IntoBytes + FromBytes + Immutable, U: IntoBytes + FromBytes + Immutable>( t: &mut T, ) -> &mut U15 fn transmute_mut<T: IntoBytes + FromBytes + Immutable, U: IntoBytes + FromBytes + Immutable>(
16     t: &mut T,
17 ) -> &mut U {
18     // `transmute_mut!` requires the source and destination types to be
19     // concrete.
20     transmute_mut!(t)
21 }
22