pub struct FetchByCityOptions {
pub city: String,
pub country: String,
pub method: Option<i64>,
pub school: Option<i64>,
pub date: Option<NaiveDate>,
}Fields§
§city: String§country: String§method: Option<i64>§school: Option<i64>§date: Option<NaiveDate>Trait Implementations§
Source§impl Clone for FetchByCityOptions
impl Clone for FetchByCityOptions
Source§fn clone(&self) -> FetchByCityOptions
fn clone(&self) -> FetchByCityOptions
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 moreAuto Trait Implementations§
impl Freeze for FetchByCityOptions
impl RefUnwindSafe for FetchByCityOptions
impl Send for FetchByCityOptions
impl Sync for FetchByCityOptions
impl Unpin for FetchByCityOptions
impl UnsafeUnpin for FetchByCityOptions
impl UnwindSafe for FetchByCityOptions
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