pub struct Auction {
pub t: Option<String>,
pub x: Option<String>,
pub p: Option<f64>,
pub s: Option<u64>,
pub c: Option<String>,
}Fields§
§t: Option<String>§x: Option<String>§p: Option<f64>§s: Option<u64>§c: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Auction
impl<'de> Deserialize<'de> for Auction
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
impl StructuralPartialEq for Auction
Auto Trait Implementations§
impl Freeze for Auction
impl RefUnwindSafe for Auction
impl Send for Auction
impl Sync for Auction
impl Unpin for Auction
impl UnwindSafe for Auction
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