pub struct Offer {
pub id: i64,
pub node_id: i64,
pub description: String,
pub price: f64,
pub currency: String,
pub active: bool,
}Fields§
§id: i64§node_id: i64§description: String§price: f64§currency: String§active: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for Offer
impl RefUnwindSafe for Offer
impl Send for Offer
impl Sync for Offer
impl Unpin for Offer
impl UnwindSafe for Offer
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