Enum imessage_database::util::typedstream::models::OutputData
source · pub enum OutputData {
String(String),
SignedInteger(i64),
UnsignedInteger(u64),
Float(f32),
Double(f64),
Byte(u8),
Array(Vec<u8>),
Class(Class),
}Expand description
Rust structures containing data stored in the typedstream
Variants§
String(String)
Text data
SignedInteger(i64)
Signed integer types are coerced into this container
UnsignedInteger(u64)
Unsigned integer types are coerced into this container
Float(f32)
Floating point numbers
Double(f64)
Double precision floats
Byte(u8)
Bytes whose type is not known
Array(Vec<u8>)
Arbitrary collection of bytes in an array
Class(Class)
A found class, in order of inheritance
Trait Implementations§
source§impl Clone for OutputData
impl Clone for OutputData
source§fn clone(&self) -> OutputData
fn clone(&self) -> OutputData
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for OutputData
impl Debug for OutputData
source§impl PartialEq for OutputData
impl PartialEq for OutputData
impl StructuralPartialEq for OutputData
Auto Trait Implementations§
impl Freeze for OutputData
impl RefUnwindSafe for OutputData
impl Send for OutputData
impl Sync for OutputData
impl Unpin for OutputData
impl UnwindSafe for OutputData
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)