pub struct FileListQuery {
pub purpose: Option<String>,
pub limit: Option<u32>,
pub after: Option<String>,
pub order: Option<String>,
}Expand description
File list query parameters
Fields§
§purpose: Option<String>Filter by purpose
limit: Option<u32>Limit number of results
after: Option<String>Pagination cursor
order: Option<String>Sort order
Trait Implementations§
Source§impl Clone for FileListQuery
impl Clone for FileListQuery
Source§fn clone(&self) -> FileListQuery
fn clone(&self) -> FileListQuery
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 FileListQuery
impl Debug for FileListQuery
Source§impl Default for FileListQuery
impl Default for FileListQuery
Source§fn default() -> FileListQuery
fn default() -> FileListQuery
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FileListQuery
impl RefUnwindSafe for FileListQuery
impl Send for FileListQuery
impl Sync for FileListQuery
impl Unpin for FileListQuery
impl UnsafeUnpin for FileListQuery
impl UnwindSafe for FileListQuery
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