pub enum RemoveNode {
AnythingArray(Vec<Option<Value>>),
Bool(bool),
Double(f64),
Integer(i64),
RemoveNodeClass(RemoveNodeClass),
String(String),
}
Variants§
AnythingArray(Vec<Option<Value>>)
Bool(bool)
Double(f64)
Integer(i64)
RemoveNodeClass(RemoveNodeClass)
String(String)
Trait Implementations§
Source§impl Clone for RemoveNode
impl Clone for RemoveNode
Source§fn clone(&self) -> RemoveNode
fn clone(&self) -> RemoveNode
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 RemoveNode
impl Debug for RemoveNode
Source§impl<'de> Deserialize<'de> for RemoveNode
impl<'de> Deserialize<'de> for RemoveNode
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 RemoveNode
impl PartialEq for RemoveNode
Source§impl Serialize for RemoveNode
impl Serialize for RemoveNode
impl StructuralPartialEq for RemoveNode
Auto Trait Implementations§
impl Freeze for RemoveNode
impl RefUnwindSafe for RemoveNode
impl Send for RemoveNode
impl Sync for RemoveNode
impl Unpin for RemoveNode
impl UnwindSafe for RemoveNode
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