pub struct SkyBlockAuction {Show 18 fields
pub id: String,
pub uuid: String,
pub auctioneer: String,
pub profile_id: String,
pub coop: Vec<String>,
pub start: i64,
pub end: i64,
pub item_name: String,
pub item_lore: String,
pub category: String,
pub tier: String,
pub starting_bid: i64,
pub item_bytes: Value,
pub claimed: bool,
pub highest_bid_amount: i64,
pub bin: bool,
pub bids: Vec<Value>,
pub extra: JsonObject,
}Expand description
A SkyBlock auction, as returned by skyblock/auction and skyblock/auctions.
Fields§
§id: String§uuid: String§auctioneer: String§profile_id: String§coop: Vec<String>§start: i64§end: i64§item_name: String§item_lore: String§category: String§tier: String§starting_bid: i64§item_bytes: ValueThe auctioned item serialized as a base64+gzip NBT blob.
claimed: bool§highest_bid_amount: i64§bin: bool§bids: Vec<Value>§extra: JsonObjectTrait Implementations§
Source§impl Clone for SkyBlockAuction
impl Clone for SkyBlockAuction
Source§fn clone(&self) -> SkyBlockAuction
fn clone(&self) -> SkyBlockAuction
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 SkyBlockAuction
impl Debug for SkyBlockAuction
Source§impl<'de> Deserialize<'de> for SkyBlockAuction
impl<'de> Deserialize<'de> for SkyBlockAuction
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 SkyBlockAuction
impl RefUnwindSafe for SkyBlockAuction
impl Send for SkyBlockAuction
impl Sync for SkyBlockAuction
impl Unpin for SkyBlockAuction
impl UnsafeUnpin for SkyBlockAuction
impl UnwindSafe for SkyBlockAuction
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