pub enum ManageSellOfferResultCode {
Show 13 variants
MANAGE_SELL_OFFER_SUCCESS = 0,
MANAGE_SELL_OFFER_MALFORMED = -1,
MANAGE_SELL_OFFER_SELL_NO_TRUST = -2,
MANAGE_SELL_OFFER_BUY_NO_TRUST = -3,
MANAGE_SELL_OFFER_SELL_NOT_AUTHORIZED = -4,
MANAGE_SELL_OFFER_BUY_NOT_AUTHORIZED = -5,
MANAGE_SELL_OFFER_LINE_FULL = -6,
MANAGE_SELL_OFFER_UNDERFUNDED = -7,
MANAGE_SELL_OFFER_CROSS_SELF = -8,
MANAGE_SELL_OFFER_SELL_NO_ISSUER = -9,
MANAGE_SELL_OFFER_BUY_NO_ISSUER = -10,
MANAGE_SELL_OFFER_NOT_FOUND = -11,
MANAGE_SELL_OFFER_LOW_RESERVE = -12,
}Variants§
MANAGE_SELL_OFFER_SUCCESS = 0
MANAGE_SELL_OFFER_MALFORMED = -1
MANAGE_SELL_OFFER_SELL_NO_TRUST = -2
MANAGE_SELL_OFFER_BUY_NO_TRUST = -3
MANAGE_SELL_OFFER_SELL_NOT_AUTHORIZED = -4
MANAGE_SELL_OFFER_BUY_NOT_AUTHORIZED = -5
MANAGE_SELL_OFFER_LINE_FULL = -6
MANAGE_SELL_OFFER_UNDERFUNDED = -7
MANAGE_SELL_OFFER_CROSS_SELF = -8
MANAGE_SELL_OFFER_SELL_NO_ISSUER = -9
MANAGE_SELL_OFFER_BUY_NO_ISSUER = -10
MANAGE_SELL_OFFER_NOT_FOUND = -11
MANAGE_SELL_OFFER_LOW_RESERVE = -12
Trait Implementations§
Source§impl Clone for ManageSellOfferResultCode
impl Clone for ManageSellOfferResultCode
Source§fn clone(&self) -> ManageSellOfferResultCode
fn clone(&self) -> ManageSellOfferResultCode
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 ManageSellOfferResultCode
impl Debug for ManageSellOfferResultCode
Source§impl<Out: Write> Pack<Out> for ManageSellOfferResultCode
impl<Out: Write> Pack<Out> for ManageSellOfferResultCode
Source§impl<In: Read> Unpack<In> for ManageSellOfferResultCode
impl<In: Read> Unpack<In> for ManageSellOfferResultCode
impl Copy for ManageSellOfferResultCode
impl Eq for ManageSellOfferResultCode
impl StructuralPartialEq for ManageSellOfferResultCode
Auto Trait Implementations§
impl Freeze for ManageSellOfferResultCode
impl RefUnwindSafe for ManageSellOfferResultCode
impl Send for ManageSellOfferResultCode
impl Sync for ManageSellOfferResultCode
impl Unpin for ManageSellOfferResultCode
impl UnwindSafe for ManageSellOfferResultCode
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