pub struct GetSurveySubmissionsParams {
pub location_id: String,
pub survey_id: Option<String>,
pub page: Option<u32>,
pub limit: Option<u32>,
pub q: Option<String>,
pub start_at: Option<String>,
pub end_at: Option<String>,
}Fields§
§location_id: String§survey_id: Option<String>§page: Option<u32>§limit: Option<u32>§q: Option<String>§start_at: Option<String>§end_at: Option<String>Trait Implementations§
Source§impl Clone for GetSurveySubmissionsParams
impl Clone for GetSurveySubmissionsParams
Source§fn clone(&self) -> GetSurveySubmissionsParams
fn clone(&self) -> GetSurveySubmissionsParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetSurveySubmissionsParams
impl Debug for GetSurveySubmissionsParams
Source§impl Default for GetSurveySubmissionsParams
impl Default for GetSurveySubmissionsParams
Source§fn default() -> GetSurveySubmissionsParams
fn default() -> GetSurveySubmissionsParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetSurveySubmissionsParams
impl<'de> Deserialize<'de> for GetSurveySubmissionsParams
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 GetSurveySubmissionsParams
impl RefUnwindSafe for GetSurveySubmissionsParams
impl Send for GetSurveySubmissionsParams
impl Sync for GetSurveySubmissionsParams
impl Unpin for GetSurveySubmissionsParams
impl UnsafeUnpin for GetSurveySubmissionsParams
impl UnwindSafe for GetSurveySubmissionsParams
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