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