Enum brush_contracts::traits::errors::FlashBorrowerError
source · [−]pub enum FlashBorrowerError {
FlashloanRejected(String),
}Variants
FlashloanRejected(String)
Trait Implementations
sourceimpl Debug for FlashBorrowerError
impl Debug for FlashBorrowerError
sourceimpl Decode for FlashBorrowerError
impl Decode for FlashBorrowerError
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 FlashBorrowerError
impl Encode for FlashBorrowerError
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<AccessControlError> for FlashBorrowerError
impl From<AccessControlError> for FlashBorrowerError
sourcefn from(access: AccessControlError) -> Self
fn from(access: AccessControlError) -> Self
Converts to this type from the input type.
sourceimpl From<FlashBorrowerError> for FlashLenderError
impl From<FlashBorrowerError> for FlashLenderError
sourcefn from(error: FlashBorrowerError) -> Self
fn from(error: FlashBorrowerError) -> Self
Converts to this type from the input type.
sourceimpl From<OwnableError> for FlashBorrowerError
impl From<OwnableError> for FlashBorrowerError
sourcefn from(ownable: OwnableError) -> Self
fn from(ownable: OwnableError) -> Self
Converts to this type from the input type.
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<PausableError> for FlashBorrowerError
impl From<PausableError> for FlashBorrowerError
sourcefn from(pausable: PausableError) -> Self
fn from(pausable: PausableError) -> Self
Converts to this type from the input type.
sourceimpl From<ReentrancyGuardError> for FlashBorrowerError
impl From<ReentrancyGuardError> for FlashBorrowerError
sourcefn from(guard: ReentrancyGuardError) -> Self
fn from(guard: ReentrancyGuardError) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<FlashBorrowerError> for FlashBorrowerError
impl PartialEq<FlashBorrowerError> for FlashBorrowerError
sourcefn eq(&self, other: &FlashBorrowerError) -> bool
fn eq(&self, other: &FlashBorrowerError) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &FlashBorrowerError) -> bool
fn ne(&self, other: &FlashBorrowerError) -> bool
This method tests for !=.
sourceimpl TypeInfo for FlashBorrowerError
impl TypeInfo for FlashBorrowerError
impl EncodeLike<FlashBorrowerError> for FlashBorrowerError
impl Eq for FlashBorrowerError
impl StructuralEq for FlashBorrowerError
impl StructuralPartialEq for FlashBorrowerError
Auto Trait Implementations
impl RefUnwindSafe for FlashBorrowerError
impl Send for FlashBorrowerError
impl Sync for FlashBorrowerError
impl Unpin for FlashBorrowerError
impl UnwindSafe for FlashBorrowerError
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