pub struct GetFormsParams {
pub location_id: String,
pub skip: Option<f64>,
pub limit: Option<f64>,
pub type_: Option<String>,
}Available on crate feature
forms only.Expand description
Query parameters for FormsService::get_forms.
Fields§
§location_id: StringlocationId query parameter.
Required by the API.
skip: Option<f64>skip query parameter.
limit: Option<f64>Limit Per Page records count. will allow maximum up to 50 and default will be 10
type_: Option<String>type query parameter.
Implementations§
Trait Implementations§
Source§impl Clone for GetFormsParams
impl Clone for GetFormsParams
Source§fn clone(&self) -> GetFormsParams
fn clone(&self) -> GetFormsParams
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 GetFormsParams
impl Debug for GetFormsParams
Source§impl Default for GetFormsParams
impl Default for GetFormsParams
Source§fn default() -> GetFormsParams
fn default() -> GetFormsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetFormsParams
impl RefUnwindSafe for GetFormsParams
impl Send for GetFormsParams
impl Sync for GetFormsParams
impl Unpin for GetFormsParams
impl UnsafeUnpin for GetFormsParams
impl UnwindSafe for GetFormsParams
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