Lines Matching refs:impl_for_transmute_from

406                 impl_for_transmute_from!(=> FromZeros for $atomics [$primitives]);
407 impl_for_transmute_from!(=> FromBytes for $atomics [$primitives]);
408 impl_for_transmute_from!(=> TryFromBytes for $atomics [$primitives]);
409 impl_for_transmute_from!(=> IntoBytes for $atomics [$primitives]);
464 impl_for_transmute_from!(=> FromZeros for AtomicBool [bool]);
465 impl_for_transmute_from!(=> TryFromBytes for AtomicBool [bool]);
466 impl_for_transmute_from!(=> IntoBytes for AtomicBool [bool]);
613 impl_for_transmute_from!(T => TryFromBytes for AtomicPtr<T> [*mut T]);
614 impl_for_transmute_from!(T => FromZeros for AtomicPtr<T> [*mut T]);
663 impl_for_transmute_from!(T: TryFromBytes => TryFromBytes for Wrapping<T>[T]);
664 impl_for_transmute_from!(T: FromZeros => FromZeros for Wrapping<T>[T]);
665 impl_for_transmute_from!(T: FromBytes => FromBytes for Wrapping<T>[T]);
666 impl_for_transmute_from!(T: IntoBytes => IntoBytes for Wrapping<T>[T]);
737 impl_for_transmute_from!(T: ?Sized + TryFromBytes => TryFromBytes for ManuallyDrop<T>[T]);
738 impl_for_transmute_from!(T: ?Sized + FromZeros => FromZeros for ManuallyDrop<T>[T]);
739 impl_for_transmute_from!(T: ?Sized + FromBytes => FromBytes for ManuallyDrop<T>[T]);
740 impl_for_transmute_from!(T: ?Sized + IntoBytes => IntoBytes for ManuallyDrop<T>[T]);
827 impl_for_transmute_from!(T: ?Sized + TryFromBytes => TryFromBytes for Cell<T>[T]);
828 impl_for_transmute_from!(T: ?Sized + FromZeros => FromZeros for Cell<T>[T]);
829 impl_for_transmute_from!(T: ?Sized + FromBytes => FromBytes for Cell<T>[T]);
830 impl_for_transmute_from!(T: ?Sized + IntoBytes => IntoBytes for Cell<T>[T]);
839 impl_for_transmute_from!(T: ?Sized + FromZeros => FromZeros for UnsafeCell<T>[T]);
840 impl_for_transmute_from!(T: ?Sized + FromBytes => FromBytes for UnsafeCell<T>[T]);
841 impl_for_transmute_from!(T: ?Sized + IntoBytes => IntoBytes for UnsafeCell<T>[T]);