pub struct EndedAuction {
pub auction_id: String,
pub seller: String,
pub seller_profile: String,
pub buyer: String,
pub buyer_profile: Option<String>,
pub timestamp: i64,
pub price: i64,
pub bin: bool,
pub item_bytes: String,
pub extra: JsonObject,
}Expand description
A recently completed auction, as returned by skyblock/auctions_ended.
Fields§
§auction_id: String§seller: String§seller_profile: String§buyer: String§buyer_profile: Option<String>§timestamp: i64§price: i64§bin: bool§item_bytes: StringThe sold item serialized as a base64+gzip NBT blob.
extra: JsonObjectTrait Implementations§
Source§impl Clone for EndedAuction
impl Clone for EndedAuction
Source§fn clone(&self) -> EndedAuction
fn clone(&self) -> EndedAuction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EndedAuction
impl Debug for EndedAuction
Source§impl<'de> Deserialize<'de> for EndedAuction
impl<'de> Deserialize<'de> for EndedAuction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for EndedAuction
impl RefUnwindSafe for EndedAuction
impl Send for EndedAuction
impl Sync for EndedAuction
impl Unpin for EndedAuction
impl UnsafeUnpin for EndedAuction
impl UnwindSafe for EndedAuction
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