pub enum Value<Type> {
BE(Type),
LE(Type),
}
Variants§
Implementations§
Trait Implementations§
impl<Type: Copy> Copy for Value<Type>
Auto Trait Implementations§
impl<Type> Freeze for Value<Type>where
Type: Freeze,
impl<Type> RefUnwindSafe for Value<Type>where
Type: RefUnwindSafe,
impl<Type> Send for Value<Type>where
Type: Send,
impl<Type> Sync for Value<Type>where
Type: Sync,
impl<Type> Unpin for Value<Type>where
Type: Unpin,
impl<Type> UnwindSafe for Value<Type>where
Type: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more