pub enum ManageSellOfferResult {
Show 13 variants
Success(ManageOfferResultSuccess),
Malformed,
SellNoTrust,
BuyNoTrust,
SellNotAuthorized,
BuyNotAuthorized,
LineFull,
Underfunded,
CrossSelf,
SellNoIssuer,
BuyNoIssuer,
NotFound,
LowReserve,
}Variants§
Success(ManageOfferResultSuccess)
Malformed
SellNoTrust
BuyNoTrust
SellNotAuthorized
BuyNotAuthorized
LineFull
Underfunded
CrossSelf
SellNoIssuer
BuyNoIssuer
NotFound
LowReserve
Implementations§
Source§impl ManageSellOfferResult
impl ManageSellOfferResult
pub fn from_xdr(x: &ManageSellOfferResult) -> Result<ManageSellOfferResult>
Trait Implementations§
Source§impl Clone for ManageSellOfferResult
impl Clone for ManageSellOfferResult
Source§fn clone(&self) -> ManageSellOfferResult
fn clone(&self) -> ManageSellOfferResult
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 ManageSellOfferResult
impl Debug for ManageSellOfferResult
Source§impl PartialEq for ManageSellOfferResult
impl PartialEq for ManageSellOfferResult
impl Eq for ManageSellOfferResult
impl StructuralPartialEq for ManageSellOfferResult
Auto Trait Implementations§
impl Freeze for ManageSellOfferResult
impl RefUnwindSafe for ManageSellOfferResult
impl Send for ManageSellOfferResult
impl Sync for ManageSellOfferResult
impl Unpin for ManageSellOfferResult
impl UnwindSafe for ManageSellOfferResult
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