pub enum Data<'a> {
Raw(Vec<&'a [u8]>),
Named(Vec<Named<'a>>),
Intr(Intr),
Io(Io),
Timer(Vec<Timer<'a>>),
Null,
}
Expand description
Data from a single kstat.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Data<'a>
impl<'a> RefUnwindSafe for Data<'a>
impl<'a> Send for Data<'a>
impl<'a> Sync for Data<'a>
impl<'a> Unpin for Data<'a>
impl<'a> UnwindSafe for Data<'a>
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