pub enum BreakNodeType {
Break,
}Expand description
BreakNodeType
JSON schema
{
"enum": [
"Break"
]
}Variants§
Break
Trait Implementations§
Source§impl Clone for BreakNodeType
impl Clone for BreakNodeType
Source§fn clone(&self) -> BreakNodeType
fn clone(&self) -> BreakNodeType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BreakNodeType
Source§impl Debug for BreakNodeType
impl Debug for BreakNodeType
Source§impl<'de> Deserialize<'de> for BreakNodeType
impl<'de> Deserialize<'de> for BreakNodeType
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
impl Eq for BreakNodeType
Source§impl From<&BreakNodeType> for BreakNodeType
impl From<&BreakNodeType> for BreakNodeType
Source§fn from(value: &BreakNodeType) -> Self
fn from(value: &BreakNodeType) -> Self
Converts to this type from the input type.
Source§impl FromStr for BreakNodeType
impl FromStr for BreakNodeType
Source§impl Hash for BreakNodeType
impl Hash for BreakNodeType
Source§impl Ord for BreakNodeType
impl Ord for BreakNodeType
Source§fn cmp(&self, other: &BreakNodeType) -> Ordering
fn cmp(&self, other: &BreakNodeType) -> Ordering
1.21.0 (const: unstable) · 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 BreakNodeType
impl PartialEq for BreakNodeType
Source§fn eq(&self, other: &BreakNodeType) -> bool
fn eq(&self, other: &BreakNodeType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for BreakNodeType
impl PartialOrd for BreakNodeType
Source§impl Serialize for BreakNodeType
impl Serialize for BreakNodeType
impl StructuralPartialEq for BreakNodeType
Source§impl ToString for BreakNodeType
impl ToString for BreakNodeType
Source§impl TryFrom<&String> for BreakNodeType
impl TryFrom<&String> for BreakNodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for BreakNodeType
impl TryFrom<&str> for BreakNodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for BreakNodeType
impl TryFrom<String> for BreakNodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for BreakNodeType
impl RefUnwindSafe for BreakNodeType
impl Send for BreakNodeType
impl Sync for BreakNodeType
impl Unpin for BreakNodeType
impl UnsafeUnpin for BreakNodeType
impl UnwindSafe for BreakNodeType
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