pub struct ListResponsesParams {
pub page_size: Option<u32>,
pub page_token: Option<String>,
pub filter: Option<String>,
}Expand description
Optional query parameters for listing form responses.
Fields§
§page_size: Option<u32>Maximum number of responses to return per page (default: 5000, max: 5000).
page_token: Option<String>Page token returned by a previous call.
filter: Option<String>RFC 3339 timestamp; only responses submitted after this time are returned.
Trait Implementations§
Source§impl Clone for ListResponsesParams
impl Clone for ListResponsesParams
Source§fn clone(&self) -> ListResponsesParams
fn clone(&self) -> ListResponsesParams
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 ListResponsesParams
impl Debug for ListResponsesParams
Source§impl Default for ListResponsesParams
impl Default for ListResponsesParams
Source§fn default() -> ListResponsesParams
fn default() -> ListResponsesParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListResponsesParams
impl RefUnwindSafe for ListResponsesParams
impl Send for ListResponsesParams
impl Sync for ListResponsesParams
impl Unpin for ListResponsesParams
impl UnsafeUnpin for ListResponsesParams
impl UnwindSafe for ListResponsesParams
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