pub enum GetNodeContainer {
AnythingArray(Vec<Option<Value>>),
Bool(bool),
Double(f64),
GetNodeContainerClass(GetNodeContainerClass),
Integer(i64),
String(String),
}
Variants§
AnythingArray(Vec<Option<Value>>)
Bool(bool)
Double(f64)
GetNodeContainerClass(GetNodeContainerClass)
Integer(i64)
String(String)
Trait Implementations§
Source§impl Clone for GetNodeContainer
impl Clone for GetNodeContainer
Source§fn clone(&self) -> GetNodeContainer
fn clone(&self) -> GetNodeContainer
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 GetNodeContainer
impl Debug for GetNodeContainer
Source§impl<'de> Deserialize<'de> for GetNodeContainer
impl<'de> Deserialize<'de> for GetNodeContainer
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetNodeContainer
impl PartialEq for GetNodeContainer
Source§impl Serialize for GetNodeContainer
impl Serialize for GetNodeContainer
impl StructuralPartialEq for GetNodeContainer
Auto Trait Implementations§
impl Freeze for GetNodeContainer
impl RefUnwindSafe for GetNodeContainer
impl Send for GetNodeContainer
impl Sync for GetNodeContainer
impl Unpin for GetNodeContainer
impl UnwindSafe for GetNodeContainer
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