pub struct Classified<TValue> {
pub class: &'static DataClass,
pub value: TValue,
}Expand description
Data that has been classified.
Fields§
§class: &'static DataClass§value: TValueTrait Implementations§
Auto Trait Implementations§
impl<TValue> Freeze for Classified<TValue>where
TValue: Freeze,
impl<TValue> RefUnwindSafe for Classified<TValue>where
TValue: RefUnwindSafe,
impl<TValue> Send for Classified<TValue>where
TValue: Send,
impl<TValue> Sync for Classified<TValue>where
TValue: Sync,
impl<TValue> Unpin for Classified<TValue>where
TValue: Unpin,
impl<TValue> UnwindSafe for Classified<TValue>where
TValue: 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