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 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 ContractDefinitionNodeType
Source§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
impl Eq for ContractDefinitionNodeType
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 (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 ContractDefinitionNodeType
impl PartialEq for ContractDefinitionNodeType
Source§fn eq(&self, other: &ContractDefinitionNodeType) -> bool
fn eq(&self, other: &ContractDefinitionNodeType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ContractDefinitionNodeType
impl PartialOrd for ContractDefinitionNodeType
impl StructuralPartialEq 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.
Auto Trait Implementations§
impl Freeze for ContractDefinitionNodeType
impl RefUnwindSafe for ContractDefinitionNodeType
impl Send for ContractDefinitionNodeType
impl Sync for ContractDefinitionNodeType
impl Unpin for ContractDefinitionNodeType
impl UnsafeUnpin 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