pub struct OfferEntry {
pub seller_id: PublicKey,
pub offer_id: i64,
pub selling: Asset,
pub buying: Asset,
pub amount: Stroops,
pub price: Price,
pub flags: u32,
}Fields§
§seller_id: PublicKey§offer_id: i64§selling: Asset§buying: Asset§amount: Stroops§price: Price§flags: u32Implementations§
Source§impl OfferEntry
impl OfferEntry
pub fn from_xdr(x: &OfferEntry) -> Result<OfferEntry>
Trait Implementations§
Source§impl Clone for OfferEntry
impl Clone for OfferEntry
Source§fn clone(&self) -> OfferEntry
fn clone(&self) -> OfferEntry
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 OfferEntry
impl Debug for OfferEntry
Source§impl PartialEq for OfferEntry
impl PartialEq for OfferEntry
impl Eq for OfferEntry
impl StructuralPartialEq for OfferEntry
Auto Trait Implementations§
impl Freeze for OfferEntry
impl RefUnwindSafe for OfferEntry
impl Send for OfferEntry
impl Sync for OfferEntry
impl Unpin for OfferEntry
impl UnwindSafe for OfferEntry
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