Enum rust_corosync::cmap::Data
source · pub enum Data {
}Expand description
Data returned from the cmap::get() call and tracker & iterators. Contains the data itself and the type of that data.
Variants§
Int8(i8)
UInt8(u8)
Int16(i16)
UInt16(u16)
Int32(i32)
UInt32(u32)
Int64(i64)
UInt64(u64)
Float(f32)
Double(f64)
String(String)
Binary(Vec<u8>)
Unknown
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Data
impl Send for Data
impl Sync for Data
impl Unpin for Data
impl UnwindSafe for Data
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