pub struct JobListQuery {
pub status: Option<String>,
pub task_type: Option<String>,
pub skills: Option<String>,
pub min_budget: Option<f64>,
pub max_budget: Option<f64>,
pub page: Option<i64>,
pub limit: Option<i64>,
}Fields§
§status: Option<String>§task_type: Option<String>§skills: Option<String>§min_budget: Option<f64>§max_budget: Option<f64>§page: Option<i64>§limit: Option<i64>Trait Implementations§
Source§impl Clone for JobListQuery
impl Clone for JobListQuery
Source§fn clone(&self) -> JobListQuery
fn clone(&self) -> JobListQuery
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 JobListQuery
impl Debug for JobListQuery
Source§impl Default for JobListQuery
impl Default for JobListQuery
Source§impl<'de> Deserialize<'de> for JobListQuery
impl<'de> Deserialize<'de> for JobListQuery
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 JobListQuery
impl RefUnwindSafe for JobListQuery
impl Send for JobListQuery
impl Sync for JobListQuery
impl Unpin for JobListQuery
impl UnsafeUnpin for JobListQuery
impl UnwindSafe for JobListQuery
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