pub enum AllowTrustResultCode {
ALLOW_TRUST_SUCCESS = 0,
ALLOW_TRUST_MALFORMED = -1,
ALLOW_TRUST_NO_TRUST_LINE = -2,
ALLOW_TRUST_TRUST_NOT_REQUIRED = -3,
ALLOW_TRUST_CANT_REVOKE = -4,
ALLOW_TRUST_SELF_NOT_ALLOWED = -5,
}
Variants§
ALLOW_TRUST_SUCCESS = 0
ALLOW_TRUST_MALFORMED = -1
ALLOW_TRUST_NO_TRUST_LINE = -2
ALLOW_TRUST_TRUST_NOT_REQUIRED = -3
ALLOW_TRUST_CANT_REVOKE = -4
ALLOW_TRUST_SELF_NOT_ALLOWED = -5
Trait Implementations§
Source§impl Clone for AllowTrustResultCode
impl Clone for AllowTrustResultCode
Source§fn clone(&self) -> AllowTrustResultCode
fn clone(&self) -> AllowTrustResultCode
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 AllowTrustResultCode
impl Debug for AllowTrustResultCode
Source§impl<Out: Write> Pack<Out> for AllowTrustResultCode
impl<Out: Write> Pack<Out> for AllowTrustResultCode
Source§impl PartialEq for AllowTrustResultCode
impl PartialEq for AllowTrustResultCode
Source§impl<In: Read> Unpack<In> for AllowTrustResultCode
impl<In: Read> Unpack<In> for AllowTrustResultCode
impl Copy for AllowTrustResultCode
impl Eq for AllowTrustResultCode
impl StructuralPartialEq for AllowTrustResultCode
Auto Trait Implementations§
impl Freeze for AllowTrustResultCode
impl RefUnwindSafe for AllowTrustResultCode
impl Send for AllowTrustResultCode
impl Sync for AllowTrustResultCode
impl Unpin for AllowTrustResultCode
impl UnwindSafe for AllowTrustResultCode
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