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