pub struct MonthQuotesRequest {
pub variety_code: String,
pub year: i32,
pub month: i32,
}Expand description
Request for monthly quotes.
Fields§
§variety_code: StringVariety code.
year: i32Year.
month: i32Month.
Trait Implementations§
Source§impl Clone for MonthQuotesRequest
impl Clone for MonthQuotesRequest
Source§fn clone(&self) -> MonthQuotesRequest
fn clone(&self) -> MonthQuotesRequest
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 MonthQuotesRequest
impl Debug for MonthQuotesRequest
Auto Trait Implementations§
impl Freeze for MonthQuotesRequest
impl RefUnwindSafe for MonthQuotesRequest
impl Send for MonthQuotesRequest
impl Sync for MonthQuotesRequest
impl Unpin for MonthQuotesRequest
impl UnwindSafe for MonthQuotesRequest
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