Skip to main content

RestakingError

Enum RestakingError 

Source
pub enum RestakingError {
Show 29 variants NcnOperatorAdminInvalid = 1_000, NcnCooldownOperatorFailed = 1001, NcnSlasherAdminInvalid = 1002, NcnVaultAdminInvalid = 1003, NcnAdminInvalid = 1004, NcnDelegateAdminInvalid = 1005, NcnVaultSlasherTicketFailedCooldown = 1006, NcnVaultTicketFailedCooldown = 1007, NcnWarmupOperatorFailed = 1008, NcnVaultSlasherTicketFailedWarmup = 1009, NcnVaultTicketFailedWarmup = 1010, OperatorNcnAdminInvalid = 2_000, OperatorVaultAdminInvalid = 2001, OperatorAdminInvalid = 2002, OperatorDelegateAdminInvalid = 2003, OperatorCooldownNcnFailed = 2004, OperatorVaultTicketFailedCooldown = 2005, OperatorVaultTicketFailedWarmup = 2006, OperatorWarmupNcnFailed = 2007, OperatorFeeCapExceeded = 2008, NcnOverflow = 2009, OperatorOverflow = 2010, VaultOverflow = 2011, SlasherOverflow = 2012, InvalidEpochLength = 2013, ConfigAdminInvalid = 2014, ArithmeticOverflow = 3_000, ArithmeticUnderflow = 3001, DivisionByZero = 3002,
}

Variants§

§

NcnOperatorAdminInvalid = 1_000

§

NcnCooldownOperatorFailed = 1001

§

NcnSlasherAdminInvalid = 1002

§

NcnVaultAdminInvalid = 1003

§

NcnAdminInvalid = 1004

§

NcnDelegateAdminInvalid = 1005

§

NcnVaultSlasherTicketFailedCooldown = 1006

§

NcnVaultTicketFailedCooldown = 1007

§

NcnWarmupOperatorFailed = 1008

§

NcnVaultSlasherTicketFailedWarmup = 1009

§

NcnVaultTicketFailedWarmup = 1010

§

OperatorNcnAdminInvalid = 2_000

§

OperatorVaultAdminInvalid = 2001

§

OperatorAdminInvalid = 2002

§

OperatorDelegateAdminInvalid = 2003

§

OperatorCooldownNcnFailed = 2004

§

OperatorVaultTicketFailedCooldown = 2005

§

OperatorVaultTicketFailedWarmup = 2006

§

OperatorWarmupNcnFailed = 2007

§

OperatorFeeCapExceeded = 2008

§

NcnOverflow = 2009

§

OperatorOverflow = 2010

§

VaultOverflow = 2011

§

SlasherOverflow = 2012

§

InvalidEpochLength = 2013

§

ConfigAdminInvalid = 2014

§

ArithmeticOverflow = 3_000

§

ArithmeticUnderflow = 3001

§

DivisionByZero = 3002

Trait Implementations§

Source§

impl Debug for RestakingError

Source§

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

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

impl<T> DecodeError<T> for RestakingError

Source§

impl Display for RestakingError

Source§

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

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

impl Error for RestakingError

1.30.0 · Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl From<RestakingError> for ProgramError

Source§

fn from(e: RestakingError) -> Self

Converts to this type from the input type.
Source§

impl From<RestakingError> for u64

Source§

fn from(e: RestakingError) -> Self

Converts to this type from the input type.

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<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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<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> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,