pub struct OfferEntry {
pub sellerID: AccountID,
pub offerID: int64,
pub selling: Asset,
pub buying: Asset,
pub amount: int64,
pub price: Price,
pub flags: uint32,
pub ext: OfferEntryExt,
}
Fields§
§sellerID: AccountID
§offerID: int64
§selling: Asset
§buying: Asset
§amount: int64
§price: Price
§flags: uint32
§ext: OfferEntryExt
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<Out: Write> Pack<Out> for OfferEntry
impl<Out: Write> Pack<Out> for OfferEntry
Source§impl PartialEq for OfferEntry
impl PartialEq for OfferEntry
Source§impl<In: Read> Unpack<In> for OfferEntry
impl<In: Read> Unpack<In> for OfferEntry
impl Copy 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