pub enum ManageBuyOfferResult {
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 ManageBuyOfferResult
impl ManageBuyOfferResult
pub fn from_xdr(x: &ManageBuyOfferResult) -> Result<ManageBuyOfferResult>
Trait Implementations§
Source§impl Clone for ManageBuyOfferResult
impl Clone for ManageBuyOfferResult
Source§fn clone(&self) -> ManageBuyOfferResult
fn clone(&self) -> ManageBuyOfferResult
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 ManageBuyOfferResult
impl Debug for ManageBuyOfferResult
Source§impl PartialEq for ManageBuyOfferResult
impl PartialEq for ManageBuyOfferResult
impl Eq for ManageBuyOfferResult
impl StructuralPartialEq for ManageBuyOfferResult
Auto Trait Implementations§
impl Freeze for ManageBuyOfferResult
impl RefUnwindSafe for ManageBuyOfferResult
impl Send for ManageBuyOfferResult
impl Sync for ManageBuyOfferResult
impl Unpin for ManageBuyOfferResult
impl UnwindSafe for ManageBuyOfferResult
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