#[repr(i32)]pub enum RejectionCode {
NoError = 0,
SysFatal = 1,
SysTransient = 2,
DestinationInvalid = 3,
CanisterReject = 4,
CanisterError = 5,
Unknown = 6,
}Expand description
Rejection code from calling another canister.
Variants§
NoError = 0
SysFatal = 1
SysTransient = 2
DestinationInvalid = 3
CanisterReject = 4
CanisterError = 5
Unknown = 6
Trait Implementations§
Source§impl Clone for RejectionCode
impl Clone for RejectionCode
Source§fn clone(&self) -> RejectionCode
fn clone(&self) -> RejectionCode
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 RejectionCode
impl Debug for RejectionCode
Source§impl From<i32> for RejectionCode
impl From<i32> for RejectionCode
Source§impl From<u32> for RejectionCode
impl From<u32> for RejectionCode
impl Copy for RejectionCode
Auto Trait Implementations§
impl Freeze for RejectionCode
impl RefUnwindSafe for RejectionCode
impl Send for RejectionCode
impl Sync for RejectionCode
impl Unpin for RejectionCode
impl UnwindSafe for RejectionCode
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