pub enum JssType {
Undefined,
Anything,
Nothing,
String,
Integer,
Number,
Array,
Object,
Reference(String),
Complex(Box<JssComplexType>),
}Variants§
Undefined
Anything
Nothing
String
Integer
Number
Array
Object
Reference(String)
Complex(Box<JssComplexType>)
Implementations§
Trait Implementations§
impl StructuralPartialEq for JssType
Auto Trait Implementations§
impl Freeze for JssType
impl RefUnwindSafe for JssType
impl Send for JssType
impl Sync for JssType
impl Unpin for JssType
impl UnwindSafe for JssType
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