#[repr(u32)]pub enum AntegenFiberError {
InvalidCompiledInstruction = 0,
AlreadyInitialized = 1,
InvalidFiberPDA = 2,
InsufficientRent = 3,
LookupTablesExceedMax = 4,
LegacyFiberLookupTablesUnsupported = 5,
InvalidFiberData = 6,
}Variants§
InvalidCompiledInstruction = 0
AlreadyInitialized = 1
InvalidFiberPDA = 2
InsufficientRent = 3
LookupTablesExceedMax = 4
LegacyFiberLookupTablesUnsupported = 5
InvalidFiberData = 6
Implementations§
Trait Implementations§
Source§impl Clone for AntegenFiberError
impl Clone for AntegenFiberError
Source§fn clone(&self) -> AntegenFiberError
fn clone(&self) -> AntegenFiberError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AntegenFiberError
impl Debug for AntegenFiberError
Source§impl Display for AntegenFiberError
impl Display for AntegenFiberError
Source§impl From<AntegenFiberError> for Error
impl From<AntegenFiberError> for Error
Source§fn from(error_code: AntegenFiberError) -> Error
fn from(error_code: AntegenFiberError) -> Error
Converts to this type from the input type.
Source§impl From<AntegenFiberError> for u32
impl From<AntegenFiberError> for u32
Source§fn from(e: AntegenFiberError) -> u32
fn from(e: AntegenFiberError) -> u32
Converts to this type from the input type.
impl Copy for AntegenFiberError
Auto Trait Implementations§
impl Freeze for AntegenFiberError
impl RefUnwindSafe for AntegenFiberError
impl Send for AntegenFiberError
impl Sync for AntegenFiberError
impl Unpin for AntegenFiberError
impl UnsafeUnpin for AntegenFiberError
impl UnwindSafe for AntegenFiberError
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