Skip to main content

ZipperReasonCode

Enum ZipperReasonCode 

Source
#[repr(i32)]
pub enum ZipperReasonCode {
Show 49 variants REASON_UNSPECIFIED = 0, DEPOSIT_WAIT_EXPIRED = 1_001, DEPOSIT_AMOUNT_INVALID = 1_002, DEPOSIT_AMOUNT_BELOW_MINIMUM = 1_003, DEPOSIT_AMOUNT_NOT_ABOVE_FEE = 1_004, DEPOSIT_NET_AMOUNT_BELOW_MINIMUM = 1_005, EVM_DEPOSIT_SOURCE_TX_INVALID = 1_101, EVM_DEPOSIT_SOURCE_TX_ZERO = 1_102, EVM_DEPOSIT_SOURCE_TX_NOT_FOUND = 1_103, EVM_DEPOSIT_SOURCE_TX_REVERTED = 1_104, EVM_DEPOSIT_TRANSFER_MISMATCH = 1_105, UTXO_DEPOSIT_TRANSACTION_MISMATCH = 1_201, BTC_DEPOSIT_TRANSACTION_MISMATCH = 1_202, BCH_DEPOSIT_TRANSACTION_MISMATCH = 1_203, DOGE_DEPOSIT_TRANSACTION_MISMATCH = 1_204, LTC_DEPOSIT_TRANSACTION_MISMATCH = 1_205, UTXO_DEPOSIT_SOURCE_IS_DEPOSIT_ADDRESS = 1_206, SOLANA_DEPOSIT_SIGNATURE_INVALID = 1_301, SOLANA_DEPOSIT_TRANSACTION_FAILED = 1_302, SOLANA_DEPOSIT_TRANSFER_MISMATCH = 1_303, XRP_DEPOSIT_SOURCE_HASH_INDEX_INVALID = 1_401, XRP_DEPOSIT_SOURCE_ADDRESS_INVALID = 1_402, XRP_DEPOSIT_ADDRESS_INVALID = 1_403, XRP_DEPOSIT_PAYMENT_MISMATCH = 1_404, REJECTION_UNMAPPED = 1_999, WITHDRAWAL_AMOUNT_INVALID = 2_001, WITHDRAWAL_AMOUNT_BELOW_MINIMUM = 2_002, WITHDRAWAL_ASSET_INVALID = 2_003, WITHDRAWAL_SENDER_INVALID = 2_004, WITHDRAWAL_DESTINATION_INVALID = 2_005, WITHDRAWAL_ASSET_UNAVAILABLE = 2_006, EVM_WITHDRAWAL_DESTINATION_INVALID = 2_101, BTC_WITHDRAWAL_DESTINATION_INVALID = 2_201, BCH_WITHDRAWAL_DESTINATION_INVALID = 2_202, DOGE_WITHDRAWAL_DESTINATION_INVALID = 2_203, LTC_WITHDRAWAL_DESTINATION_INVALID = 2_204, SOLANA_WITHDRAWAL_DESTINATION_INVALID = 2_301, XRP_WITHDRAWAL_CLASSIC_ADDRESS_INVALID = 2_401, XRP_WITHDRAWAL_DESTINATION_TAG_INVALID = 2_402, WITHDRAWAL_LIQUIDITY_INSUFFICIENT = 3_001, COMPLIANCE_HIGH_RISK_ADDRESS = 3_002, REQUEST_VERIFICATION_REJECTED = 3_901, REJECTED = 3_902, ERROR_UNMAPPED = 9_000, ERROR_NETWORK_UNSUPPORTED = 9_001, ERROR_REQUEST_PROCESSING_FAILED = 9_002, ERROR_REQUEST_VERIFICATION_FAILED = 9_003, ERROR_RESULT_SUBMISSION_FAILED = 9_004, ERROR_STATUS_UNKNOWN = 9_005,
}
Expand description

ZipperReasonCode identifies a specific Zipper request outcome. Numeric values are stable and may be used for client decisions, analytics, and support.

Variants§

§

REASON_UNSPECIFIED = 0

No specific reason is available.

§

DEPOSIT_WAIT_EXPIRED = 1_001

Deposit confirmations were not reached before the wait expired.

§

DEPOSIT_AMOUNT_INVALID = 1_002

Deposit amount is invalid.

§

DEPOSIT_AMOUNT_BELOW_MINIMUM = 1_003

Deposit amount is below the configured minimum.

§

DEPOSIT_AMOUNT_NOT_ABOVE_FEE = 1_004

Deposit amount is not greater than the fee.

§

DEPOSIT_NET_AMOUNT_BELOW_MINIMUM = 1_005

Deposit amount after fees is below the configured minimum.

§

EVM_DEPOSIT_SOURCE_TX_INVALID = 1_101

EVM deposit source transaction hash is invalid.

§

EVM_DEPOSIT_SOURCE_TX_ZERO = 1_102

EVM deposit source transaction hash is zero.

§

EVM_DEPOSIT_SOURCE_TX_NOT_FOUND = 1_103

EVM deposit source transaction was not found.

§

EVM_DEPOSIT_SOURCE_TX_REVERTED = 1_104

EVM deposit source transaction reverted.

§

EVM_DEPOSIT_TRANSFER_MISMATCH = 1_105

EVM deposit transfer does not match the request.

§

UTXO_DEPOSIT_TRANSACTION_MISMATCH = 1_201

UTXO deposit transaction does not match the request.

§

BTC_DEPOSIT_TRANSACTION_MISMATCH = 1_202

Bitcoin deposit transaction does not match the request.

§

BCH_DEPOSIT_TRANSACTION_MISMATCH = 1_203

Bitcoin Cash deposit transaction does not match the request.

§

DOGE_DEPOSIT_TRANSACTION_MISMATCH = 1_204

Dogecoin deposit transaction does not match the request.

§

LTC_DEPOSIT_TRANSACTION_MISMATCH = 1_205

Litecoin deposit transaction does not match the request.

§

UTXO_DEPOSIT_SOURCE_IS_DEPOSIT_ADDRESS = 1_206

UTXO deposit source is a registered deposit address.

§

SOLANA_DEPOSIT_SIGNATURE_INVALID = 1_301

Solana deposit signature is invalid.

§

SOLANA_DEPOSIT_TRANSACTION_FAILED = 1_302

Solana deposit transaction failed.

§

SOLANA_DEPOSIT_TRANSFER_MISMATCH = 1_303

Solana deposit transfer does not match the request.

§

XRP_DEPOSIT_SOURCE_HASH_INDEX_INVALID = 1_401

XRP deposit source hash index is invalid.

§

XRP_DEPOSIT_SOURCE_ADDRESS_INVALID = 1_402

XRP deposit source address is invalid.

§

XRP_DEPOSIT_ADDRESS_INVALID = 1_403

XRP deposit address is invalid.

§

XRP_DEPOSIT_PAYMENT_MISMATCH = 1_404

XRP deposit payment does not match the request.

§

REJECTION_UNMAPPED = 1_999

The request was rejected without a more specific mapped reason.

§

WITHDRAWAL_AMOUNT_INVALID = 2_001

Withdrawal amount is invalid.

§

WITHDRAWAL_AMOUNT_BELOW_MINIMUM = 2_002

Withdrawal amount is below the configured minimum.

§

WITHDRAWAL_ASSET_INVALID = 2_003

Withdrawal asset address is invalid.

§

WITHDRAWAL_SENDER_INVALID = 2_004

Withdrawal sender account is invalid.

§

WITHDRAWAL_DESTINATION_INVALID = 2_005

Withdrawal destination address is invalid.

§

WITHDRAWAL_ASSET_UNAVAILABLE = 2_006

Withdrawal asset is unavailable on the destination network.

§

EVM_WITHDRAWAL_DESTINATION_INVALID = 2_101

EVM withdrawal destination address is invalid.

§

BTC_WITHDRAWAL_DESTINATION_INVALID = 2_201

Bitcoin withdrawal destination address is invalid.

§

BCH_WITHDRAWAL_DESTINATION_INVALID = 2_202

Bitcoin Cash withdrawal destination address is invalid.

§

DOGE_WITHDRAWAL_DESTINATION_INVALID = 2_203

Dogecoin withdrawal destination address is invalid.

§

LTC_WITHDRAWAL_DESTINATION_INVALID = 2_204

Litecoin withdrawal destination address is invalid.

§

SOLANA_WITHDRAWAL_DESTINATION_INVALID = 2_301

Solana withdrawal destination address is invalid.

§

XRP_WITHDRAWAL_CLASSIC_ADDRESS_INVALID = 2_401

XRP withdrawal classic address is invalid.

§

XRP_WITHDRAWAL_DESTINATION_TAG_INVALID = 2_402

XRP withdrawal destination tag is invalid.

§

WITHDRAWAL_LIQUIDITY_INSUFFICIENT = 3_001

Available liquidity is insufficient for the withdrawal.

§

COMPLIANCE_HIGH_RISK_ADDRESS = 3_002

Request address was classified as high risk.

§

REQUEST_VERIFICATION_REJECTED = 3_901

Request verification was rejected without a more specific reason.

§

REJECTED = 3_902

Request processing completed with a rejected result.

§

ERROR_UNMAPPED = 9_000

Request processing failed with an unmapped error.

§

ERROR_NETWORK_UNSUPPORTED = 9_001

Selected network is unsupported.

§

ERROR_REQUEST_PROCESSING_FAILED = 9_002

Request processing failed.

§

ERROR_REQUEST_VERIFICATION_FAILED = 9_003

Request verification failed.

§

ERROR_RESULT_SUBMISSION_FAILED = 9_004

Request result submission failed.

§

ERROR_STATUS_UNKNOWN = 9_005

Request status could not be determined.

Implementations§

Source§

impl ZipperReasonCode

Source

pub const ReasonUnspecified: Self = Self::REASON_UNSPECIFIED

Idiomatic alias for Self::REASON_UNSPECIFIED; Debug prints the variant name.

Source

pub const DepositWaitExpired: Self = Self::DEPOSIT_WAIT_EXPIRED

Idiomatic alias for Self::DEPOSIT_WAIT_EXPIRED; Debug prints the variant name.

Source

pub const DepositAmountInvalid: Self = Self::DEPOSIT_AMOUNT_INVALID

Idiomatic alias for Self::DEPOSIT_AMOUNT_INVALID; Debug prints the variant name.

Source

pub const DepositAmountBelowMinimum: Self = Self::DEPOSIT_AMOUNT_BELOW_MINIMUM

Idiomatic alias for Self::DEPOSIT_AMOUNT_BELOW_MINIMUM; Debug prints the variant name.

Source

pub const DepositAmountNotAboveFee: Self = Self::DEPOSIT_AMOUNT_NOT_ABOVE_FEE

Idiomatic alias for Self::DEPOSIT_AMOUNT_NOT_ABOVE_FEE; Debug prints the variant name.

Source

pub const DepositNetAmountBelowMinimum: Self = Self::DEPOSIT_NET_AMOUNT_BELOW_MINIMUM

Idiomatic alias for Self::DEPOSIT_NET_AMOUNT_BELOW_MINIMUM; Debug prints the variant name.

Source

pub const EvmDepositSourceTxInvalid: Self = Self::EVM_DEPOSIT_SOURCE_TX_INVALID

Idiomatic alias for Self::EVM_DEPOSIT_SOURCE_TX_INVALID; Debug prints the variant name.

Source

pub const EvmDepositSourceTxZero: Self = Self::EVM_DEPOSIT_SOURCE_TX_ZERO

Idiomatic alias for Self::EVM_DEPOSIT_SOURCE_TX_ZERO; Debug prints the variant name.

Source

pub const EvmDepositSourceTxNotFound: Self = Self::EVM_DEPOSIT_SOURCE_TX_NOT_FOUND

Idiomatic alias for Self::EVM_DEPOSIT_SOURCE_TX_NOT_FOUND; Debug prints the variant name.

Source

pub const EvmDepositSourceTxReverted: Self = Self::EVM_DEPOSIT_SOURCE_TX_REVERTED

Idiomatic alias for Self::EVM_DEPOSIT_SOURCE_TX_REVERTED; Debug prints the variant name.

Source

pub const EvmDepositTransferMismatch: Self = Self::EVM_DEPOSIT_TRANSFER_MISMATCH

Idiomatic alias for Self::EVM_DEPOSIT_TRANSFER_MISMATCH; Debug prints the variant name.

Source

pub const UtxoDepositTransactionMismatch: Self = Self::UTXO_DEPOSIT_TRANSACTION_MISMATCH

Idiomatic alias for Self::UTXO_DEPOSIT_TRANSACTION_MISMATCH; Debug prints the variant name.

Source

pub const BtcDepositTransactionMismatch: Self = Self::BTC_DEPOSIT_TRANSACTION_MISMATCH

Idiomatic alias for Self::BTC_DEPOSIT_TRANSACTION_MISMATCH; Debug prints the variant name.

Source

pub const BchDepositTransactionMismatch: Self = Self::BCH_DEPOSIT_TRANSACTION_MISMATCH

Idiomatic alias for Self::BCH_DEPOSIT_TRANSACTION_MISMATCH; Debug prints the variant name.

Source

pub const DogeDepositTransactionMismatch: Self = Self::DOGE_DEPOSIT_TRANSACTION_MISMATCH

Idiomatic alias for Self::DOGE_DEPOSIT_TRANSACTION_MISMATCH; Debug prints the variant name.

Source

pub const LtcDepositTransactionMismatch: Self = Self::LTC_DEPOSIT_TRANSACTION_MISMATCH

Idiomatic alias for Self::LTC_DEPOSIT_TRANSACTION_MISMATCH; Debug prints the variant name.

Source

pub const UtxoDepositSourceIsDepositAddress: Self = Self::UTXO_DEPOSIT_SOURCE_IS_DEPOSIT_ADDRESS

Idiomatic alias for Self::UTXO_DEPOSIT_SOURCE_IS_DEPOSIT_ADDRESS; Debug prints the variant name.

Source

pub const SolanaDepositSignatureInvalid: Self = Self::SOLANA_DEPOSIT_SIGNATURE_INVALID

Idiomatic alias for Self::SOLANA_DEPOSIT_SIGNATURE_INVALID; Debug prints the variant name.

Source

pub const SolanaDepositTransactionFailed: Self = Self::SOLANA_DEPOSIT_TRANSACTION_FAILED

Idiomatic alias for Self::SOLANA_DEPOSIT_TRANSACTION_FAILED; Debug prints the variant name.

Source

pub const SolanaDepositTransferMismatch: Self = Self::SOLANA_DEPOSIT_TRANSFER_MISMATCH

Idiomatic alias for Self::SOLANA_DEPOSIT_TRANSFER_MISMATCH; Debug prints the variant name.

Source

pub const XrpDepositSourceHashIndexInvalid: Self = Self::XRP_DEPOSIT_SOURCE_HASH_INDEX_INVALID

Idiomatic alias for Self::XRP_DEPOSIT_SOURCE_HASH_INDEX_INVALID; Debug prints the variant name.

Source

pub const XrpDepositSourceAddressInvalid: Self = Self::XRP_DEPOSIT_SOURCE_ADDRESS_INVALID

Idiomatic alias for Self::XRP_DEPOSIT_SOURCE_ADDRESS_INVALID; Debug prints the variant name.

Source

pub const XrpDepositAddressInvalid: Self = Self::XRP_DEPOSIT_ADDRESS_INVALID

Idiomatic alias for Self::XRP_DEPOSIT_ADDRESS_INVALID; Debug prints the variant name.

Source

pub const XrpDepositPaymentMismatch: Self = Self::XRP_DEPOSIT_PAYMENT_MISMATCH

Idiomatic alias for Self::XRP_DEPOSIT_PAYMENT_MISMATCH; Debug prints the variant name.

Source

pub const RejectionUnmapped: Self = Self::REJECTION_UNMAPPED

Idiomatic alias for Self::REJECTION_UNMAPPED; Debug prints the variant name.

Source

pub const WithdrawalAmountInvalid: Self = Self::WITHDRAWAL_AMOUNT_INVALID

Idiomatic alias for Self::WITHDRAWAL_AMOUNT_INVALID; Debug prints the variant name.

Source

pub const WithdrawalAmountBelowMinimum: Self = Self::WITHDRAWAL_AMOUNT_BELOW_MINIMUM

Idiomatic alias for Self::WITHDRAWAL_AMOUNT_BELOW_MINIMUM; Debug prints the variant name.

Source

pub const WithdrawalAssetInvalid: Self = Self::WITHDRAWAL_ASSET_INVALID

Idiomatic alias for Self::WITHDRAWAL_ASSET_INVALID; Debug prints the variant name.

Source

pub const WithdrawalSenderInvalid: Self = Self::WITHDRAWAL_SENDER_INVALID

Idiomatic alias for Self::WITHDRAWAL_SENDER_INVALID; Debug prints the variant name.

Source

pub const WithdrawalDestinationInvalid: Self = Self::WITHDRAWAL_DESTINATION_INVALID

Idiomatic alias for Self::WITHDRAWAL_DESTINATION_INVALID; Debug prints the variant name.

Source

pub const WithdrawalAssetUnavailable: Self = Self::WITHDRAWAL_ASSET_UNAVAILABLE

Idiomatic alias for Self::WITHDRAWAL_ASSET_UNAVAILABLE; Debug prints the variant name.

Source

pub const EvmWithdrawalDestinationInvalid: Self = Self::EVM_WITHDRAWAL_DESTINATION_INVALID

Idiomatic alias for Self::EVM_WITHDRAWAL_DESTINATION_INVALID; Debug prints the variant name.

Source

pub const BtcWithdrawalDestinationInvalid: Self = Self::BTC_WITHDRAWAL_DESTINATION_INVALID

Idiomatic alias for Self::BTC_WITHDRAWAL_DESTINATION_INVALID; Debug prints the variant name.

Source

pub const BchWithdrawalDestinationInvalid: Self = Self::BCH_WITHDRAWAL_DESTINATION_INVALID

Idiomatic alias for Self::BCH_WITHDRAWAL_DESTINATION_INVALID; Debug prints the variant name.

Source

pub const DogeWithdrawalDestinationInvalid: Self = Self::DOGE_WITHDRAWAL_DESTINATION_INVALID

Idiomatic alias for Self::DOGE_WITHDRAWAL_DESTINATION_INVALID; Debug prints the variant name.

Source

pub const LtcWithdrawalDestinationInvalid: Self = Self::LTC_WITHDRAWAL_DESTINATION_INVALID

Idiomatic alias for Self::LTC_WITHDRAWAL_DESTINATION_INVALID; Debug prints the variant name.

Source

pub const SolanaWithdrawalDestinationInvalid: Self = Self::SOLANA_WITHDRAWAL_DESTINATION_INVALID

Idiomatic alias for Self::SOLANA_WITHDRAWAL_DESTINATION_INVALID; Debug prints the variant name.

Source

pub const XrpWithdrawalClassicAddressInvalid: Self = Self::XRP_WITHDRAWAL_CLASSIC_ADDRESS_INVALID

Idiomatic alias for Self::XRP_WITHDRAWAL_CLASSIC_ADDRESS_INVALID; Debug prints the variant name.

Source

pub const XrpWithdrawalDestinationTagInvalid: Self = Self::XRP_WITHDRAWAL_DESTINATION_TAG_INVALID

Idiomatic alias for Self::XRP_WITHDRAWAL_DESTINATION_TAG_INVALID; Debug prints the variant name.

Source

pub const WithdrawalLiquidityInsufficient: Self = Self::WITHDRAWAL_LIQUIDITY_INSUFFICIENT

Idiomatic alias for Self::WITHDRAWAL_LIQUIDITY_INSUFFICIENT; Debug prints the variant name.

Source

pub const ComplianceHighRiskAddress: Self = Self::COMPLIANCE_HIGH_RISK_ADDRESS

Idiomatic alias for Self::COMPLIANCE_HIGH_RISK_ADDRESS; Debug prints the variant name.

Source

pub const RequestVerificationRejected: Self = Self::REQUEST_VERIFICATION_REJECTED

Idiomatic alias for Self::REQUEST_VERIFICATION_REJECTED; Debug prints the variant name.

Source

pub const Rejected: Self = Self::REJECTED

Idiomatic alias for Self::REJECTED; Debug prints the variant name.

Source

pub const ErrorUnmapped: Self = Self::ERROR_UNMAPPED

Idiomatic alias for Self::ERROR_UNMAPPED; Debug prints the variant name.

Source

pub const ErrorNetworkUnsupported: Self = Self::ERROR_NETWORK_UNSUPPORTED

Idiomatic alias for Self::ERROR_NETWORK_UNSUPPORTED; Debug prints the variant name.

Source

pub const ErrorRequestProcessingFailed: Self = Self::ERROR_REQUEST_PROCESSING_FAILED

Idiomatic alias for Self::ERROR_REQUEST_PROCESSING_FAILED; Debug prints the variant name.

Source

pub const ErrorRequestVerificationFailed: Self = Self::ERROR_REQUEST_VERIFICATION_FAILED

Idiomatic alias for Self::ERROR_REQUEST_VERIFICATION_FAILED; Debug prints the variant name.

Source

pub const ErrorResultSubmissionFailed: Self = Self::ERROR_RESULT_SUBMISSION_FAILED

Idiomatic alias for Self::ERROR_RESULT_SUBMISSION_FAILED; Debug prints the variant name.

Source

pub const ErrorStatusUnknown: Self = Self::ERROR_STATUS_UNKNOWN

Idiomatic alias for Self::ERROR_STATUS_UNKNOWN; Debug prints the variant name.

Trait Implementations§

Source§

impl Clone for ZipperReasonCode

Source§

fn clone(&self) -> ZipperReasonCode

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for ZipperReasonCode

Source§

impl Debug for ZipperReasonCode

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for ZipperReasonCode

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for ZipperReasonCode

Source§

fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Enumeration for ZipperReasonCode

Source§

fn from_i32(value: i32) -> Option<Self>

Convert from an i32 wire value to the enum. Read more
Source§

fn to_i32(&self) -> i32

Convert the enum to its i32 wire value.
Source§

fn proto_name(&self) -> &'static str

The name of this enum variant as it appears in the .proto file.
Source§

fn from_proto_name(name: &str) -> Option<Self>

Look up a variant by its protobuf name string. Read more
Source§

fn values() -> &'static [Self]

All known variants of this enum, in proto declaration order. Read more
Source§

impl Eq for ZipperReasonCode

Source§

impl Hash for ZipperReasonCode

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for ZipperReasonCode

Source§

fn eq(&self, other: &ZipperReasonCode) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl ProtoElemJson for ZipperReasonCode

Source§

fn serialize_proto_json<S: Serializer>( v: &Self, s: S, ) -> Result<S::Ok, S::Error>

Serialize this value with proto3 JSON semantics.
Source§

fn deserialize_proto_json<'de, D: Deserializer<'de>>( d: D, ) -> Result<Self, D::Error>

Deserialize a value with proto3 JSON semantics.
Source§

impl Serialize for ZipperReasonCode

Source§

fn serialize<S: Serializer>(&self, s: S) -> Result<S::Ok, S::Error>

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for ZipperReasonCode

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> JsonDeserialize for T

Source§

impl<T> JsonSerialize for T
where T: Serialize,

Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more