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