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 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 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
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 · 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§impl PartialOrd for BreakNodeType
impl PartialOrd for BreakNodeType
Source§impl Serialize for BreakNodeType
impl Serialize 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.
impl Copy for BreakNodeType
impl Eq for BreakNodeType
impl StructuralPartialEq for BreakNodeType
Auto Trait Implementations§
impl Freeze for BreakNodeType
impl RefUnwindSafe for BreakNodeType
impl Send for BreakNodeType
impl Sync for BreakNodeType
impl Unpin 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