pub enum TransactionScanningSimulationErrorResultStatus {
Error,
}Expand description
TransactionScanningSimulationErrorResultStatus
JSON schema
{
"type": "string",
"enum": [
"Error"
]
}Variants§
Error
Trait Implementations§
Source§impl Clone for TransactionScanningSimulationErrorResultStatus
impl Clone for TransactionScanningSimulationErrorResultStatus
Source§fn clone(&self) -> TransactionScanningSimulationErrorResultStatus
fn clone(&self) -> TransactionScanningSimulationErrorResultStatus
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 TransactionScanningSimulationErrorResultStatus
Source§impl<'de> Deserialize<'de> for TransactionScanningSimulationErrorResultStatus
impl<'de> Deserialize<'de> for TransactionScanningSimulationErrorResultStatus
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 TransactionScanningSimulationErrorResultStatus
Source§impl From<&TransactionScanningSimulationErrorResultStatus> for TransactionScanningSimulationErrorResultStatus
impl From<&TransactionScanningSimulationErrorResultStatus> for TransactionScanningSimulationErrorResultStatus
Source§fn from(value: &TransactionScanningSimulationErrorResultStatus) -> Self
fn from(value: &TransactionScanningSimulationErrorResultStatus) -> Self
Converts to this type from the input type.
Source§impl Ord for TransactionScanningSimulationErrorResultStatus
impl Ord for TransactionScanningSimulationErrorResultStatus
Source§fn cmp(
&self,
other: &TransactionScanningSimulationErrorResultStatus,
) -> Ordering
fn cmp( &self, other: &TransactionScanningSimulationErrorResultStatus, ) -> 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 TransactionScanningSimulationErrorResultStatus
impl PartialEq for TransactionScanningSimulationErrorResultStatus
Source§fn eq(&self, other: &TransactionScanningSimulationErrorResultStatus) -> bool
fn eq(&self, other: &TransactionScanningSimulationErrorResultStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for TransactionScanningSimulationErrorResultStatus
impl PartialOrd for TransactionScanningSimulationErrorResultStatus
Source§fn partial_cmp(
&self,
other: &TransactionScanningSimulationErrorResultStatus,
) -> Option<Ordering>
fn partial_cmp( &self, other: &TransactionScanningSimulationErrorResultStatus, ) -> Option<Ordering>
impl StructuralPartialEq for TransactionScanningSimulationErrorResultStatus
Source§impl TryFrom<&String> for TransactionScanningSimulationErrorResultStatus
impl TryFrom<&String> for TransactionScanningSimulationErrorResultStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for TransactionScanningSimulationErrorResultStatus
impl TryFrom<&str> for TransactionScanningSimulationErrorResultStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for TransactionScanningSimulationErrorResultStatus
impl TryFrom<String> for TransactionScanningSimulationErrorResultStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for TransactionScanningSimulationErrorResultStatus
impl RefUnwindSafe for TransactionScanningSimulationErrorResultStatus
impl Send for TransactionScanningSimulationErrorResultStatus
impl Sync for TransactionScanningSimulationErrorResultStatus
impl Unpin for TransactionScanningSimulationErrorResultStatus
impl UnsafeUnpin for TransactionScanningSimulationErrorResultStatus
impl UnwindSafe for TransactionScanningSimulationErrorResultStatus
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