pub enum TagData {
Binary(Vec<u8>),
Integer(i64),
Float(f64),
String(String),
Utf8String(String),
Utf16StringBE(String),
Utf16String(String),
}Variants§
Binary(Vec<u8>)
Integer(i64)
Float(f64)
String(String)
Utf8String(String)
Utf16StringBE(String)
Utf16String(String)
Auto Trait Implementations§
impl Freeze for TagData
impl RefUnwindSafe for TagData
impl Send for TagData
impl Sync for TagData
impl Unpin for TagData
impl UnwindSafe for TagData
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