Enum kstat_rs::NamedData [−][src]
pub enum NamedData<'a> {
Char(&'a [u8]),
Int32(i32),
UInt32(u32),
Int64(i64),
UInt64(u64),
String(&'a str),
}
Variants
Int32(i32)
Tuple Fields of Int32
0: i32
UInt32(u32)
Tuple Fields of UInt32
0: u32
Int64(i64)
Tuple Fields of Int64
0: i64
UInt64(u64)
Tuple Fields of UInt64
0: u64
String(&'a str)
Tuple Fields of String
0: &'a str
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for NamedData<'a>
impl<'a> UnwindSafe for NamedData<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more