#[repr(i32)]pub enum StructuredDataType {
Invalid = -1,
Null = 0,
Generic = 1,
Array = 2,
Integer = 3,
Float = 4,
Boolean = 5,
String = 6,
Dictionary = 7,
}Variants§
Invalid = -1
Null = 0
Generic = 1
Array = 2
Integer = 3
Float = 4
Boolean = 5
String = 6
Dictionary = 7
Trait Implementations§
Source§impl Clone for StructuredDataType
impl Clone for StructuredDataType
Source§fn clone(&self) -> StructuredDataType
fn clone(&self) -> StructuredDataType
Returns a duplicate 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 StructuredDataType
impl Debug for StructuredDataType
Source§impl PartialEq for StructuredDataType
impl PartialEq for StructuredDataType
Source§impl PartialOrd for StructuredDataType
impl PartialOrd for StructuredDataType
impl Copy for StructuredDataType
impl Eq for StructuredDataType
impl StructuralPartialEq for StructuredDataType
Auto Trait Implementations§
impl Freeze for StructuredDataType
impl RefUnwindSafe for StructuredDataType
impl Send for StructuredDataType
impl Sync for StructuredDataType
impl Unpin for StructuredDataType
impl UnwindSafe for StructuredDataType
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