pub enum BasicTypes {
String(String),
Number(Number),
Null,
}Variants§
Trait Implementations§
Source§impl Clone for BasicTypes
impl Clone for BasicTypes
Source§fn clone(&self) -> BasicTypes
fn clone(&self) -> BasicTypes
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 BasicTypes
impl Debug for BasicTypes
Auto Trait Implementations§
impl Freeze for BasicTypes
impl RefUnwindSafe for BasicTypes
impl Send for BasicTypes
impl Sync for BasicTypes
impl Unpin for BasicTypes
impl UnwindSafe for BasicTypes
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