Enum brush_contracts::traits::errors::PSP22ReceiverError
source · [−]pub enum PSP22ReceiverError {
TransferRejected(String),
}Variants
TransferRejected(String)
Trait Implementations
sourceimpl Debug for PSP22ReceiverError
impl Debug for PSP22ReceiverError
sourceimpl Decode for PSP22ReceiverError
impl Decode for PSP22ReceiverError
sourcefn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy
) -> Result<Self, Error>
fn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy
) -> Result<Self, Error>
Attempt to deserialise the value from input.
sourcefn skip<I>(input: &mut I) -> Result<(), Error> where
I: Input,
fn skip<I>(input: &mut I) -> Result<(), Error> where
I: Input,
Attempt to skip the encoded value from input. Read more
sourcefn encoded_fixed_size() -> Option<usize>
fn encoded_fixed_size() -> Option<usize>
Returns the fixed encoded size of the type. Read more
sourceimpl Encode for PSP22ReceiverError
impl Encode for PSP22ReceiverError
sourcefn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)
fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)
Convert self to a slice and append it to the destination.
sourcefn size_hint(&self) -> usize
fn size_hint(&self) -> usize
If possible give a hint of expected size of the encoding. Read more
sourcefn using_encoded<R, F>(&self, f: F) -> R where
F: FnOnce(&[u8]) -> R,
fn using_encoded<R, F>(&self, f: F) -> R where
F: FnOnce(&[u8]) -> R,
Convert self to a slice and then invoke the given closure with it.
sourcefn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more
sourceimpl From<PSP22ReceiverError> for FlashBorrowerError
impl From<PSP22ReceiverError> for FlashBorrowerError
sourcefn from(error: PSP22ReceiverError) -> Self
fn from(error: PSP22ReceiverError) -> Self
Converts to this type from the input type.
sourceimpl From<PSP22ReceiverError> for PSP22Error
impl From<PSP22ReceiverError> for PSP22Error
sourcefn from(error: PSP22ReceiverError) -> Self
fn from(error: PSP22ReceiverError) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<PSP22ReceiverError> for PSP22ReceiverError
impl PartialEq<PSP22ReceiverError> for PSP22ReceiverError
sourcefn eq(&self, other: &PSP22ReceiverError) -> bool
fn eq(&self, other: &PSP22ReceiverError) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &PSP22ReceiverError) -> bool
fn ne(&self, other: &PSP22ReceiverError) -> bool
This method tests for !=.
sourceimpl TypeInfo for PSP22ReceiverError
impl TypeInfo for PSP22ReceiverError
impl EncodeLike<PSP22ReceiverError> for PSP22ReceiverError
impl Eq for PSP22ReceiverError
impl StructuralEq for PSP22ReceiverError
impl StructuralPartialEq for PSP22ReceiverError
Auto Trait Implementations
impl RefUnwindSafe for PSP22ReceiverError
impl Send for PSP22ReceiverError
impl Sync for PSP22ReceiverError
impl Unpin for PSP22ReceiverError
impl UnwindSafe for PSP22ReceiverError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more