#[repr(u32)]pub enum VaultError {
NameTooLong = 0,
InvalidAmount = 1,
TreasuryInactive = 2,
InsufficientBalance = 3,
VaultLocked = 4,
InvalidReleaseTime = 5,
AlreadyReleased = 6,
EscrowCancelled = 7,
EscrowNotReady = 8,
CannotCancelAfterRelease = 9,
CannotReduceLock = 10,
MathOverflow = 11,
}Variants§
NameTooLong = 0
InvalidAmount = 1
TreasuryInactive = 2
InsufficientBalance = 3
VaultLocked = 4
InvalidReleaseTime = 5
AlreadyReleased = 6
EscrowCancelled = 7
EscrowNotReady = 8
CannotCancelAfterRelease = 9
CannotReduceLock = 10
MathOverflow = 11
Implementations§
Trait Implementations§
Source§impl Clone for VaultError
impl Clone for VaultError
Source§fn clone(&self) -> VaultError
fn clone(&self) -> VaultError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VaultError
impl Debug for VaultError
Source§impl Display for VaultError
impl Display for VaultError
Source§impl From<VaultError> for Error
impl From<VaultError> for Error
Source§fn from(error_code: VaultError) -> Error
fn from(error_code: VaultError) -> Error
Converts to this type from the input type.
Source§impl From<VaultError> for u32
impl From<VaultError> for u32
Source§fn from(e: VaultError) -> u32
fn from(e: VaultError) -> u32
Converts to this type from the input type.
impl Copy for VaultError
Auto Trait Implementations§
impl Freeze for VaultError
impl RefUnwindSafe for VaultError
impl Send for VaultError
impl Sync for VaultError
impl Unpin for VaultError
impl UnsafeUnpin for VaultError
impl UnwindSafe for VaultError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more