pub enum AssignmentNodeType {
Assignment,
}
Expand description
AssignmentNodeType
JSON schema
{
"enum": [
"Assignment"
]
}
Variants§
Assignment
Trait Implementations§
Source§impl Clone for AssignmentNodeType
impl Clone for AssignmentNodeType
Source§fn clone(&self) -> AssignmentNodeType
fn clone(&self) -> AssignmentNodeType
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 AssignmentNodeType
impl Debug for AssignmentNodeType
Source§impl<'de> Deserialize<'de> for AssignmentNodeType
impl<'de> Deserialize<'de> for AssignmentNodeType
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 From<&AssignmentNodeType> for AssignmentNodeType
impl From<&AssignmentNodeType> for AssignmentNodeType
Source§fn from(value: &AssignmentNodeType) -> Self
fn from(value: &AssignmentNodeType) -> Self
Converts to this type from the input type.
Source§impl FromStr for AssignmentNodeType
impl FromStr for AssignmentNodeType
Source§impl Hash for AssignmentNodeType
impl Hash for AssignmentNodeType
Source§impl Ord for AssignmentNodeType
impl Ord for AssignmentNodeType
Source§fn cmp(&self, other: &AssignmentNodeType) -> Ordering
fn cmp(&self, other: &AssignmentNodeType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AssignmentNodeType
impl PartialEq for AssignmentNodeType
Source§impl PartialOrd for AssignmentNodeType
impl PartialOrd for AssignmentNodeType
Source§impl Serialize for AssignmentNodeType
impl Serialize for AssignmentNodeType
Source§impl ToString for AssignmentNodeType
impl ToString for AssignmentNodeType
Source§impl TryFrom<&String> for AssignmentNodeType
impl TryFrom<&String> for AssignmentNodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for AssignmentNodeType
impl TryFrom<&str> for AssignmentNodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for AssignmentNodeType
impl TryFrom<String> for AssignmentNodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for AssignmentNodeType
impl Eq for AssignmentNodeType
impl StructuralPartialEq for AssignmentNodeType
Auto Trait Implementations§
impl Freeze for AssignmentNodeType
impl RefUnwindSafe for AssignmentNodeType
impl Send for AssignmentNodeType
impl Sync for AssignmentNodeType
impl Unpin for AssignmentNodeType
impl UnwindSafe for AssignmentNodeType
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