pub struct FileListParams {
pub cursor: Option<String>,
pub limit: Option<u32>,
pub tool_slug: Option<String>,
pub toolkit_slug: Option<String>,
}Expand description
Query parameters for listing files.
Fields§
§cursor: Option<String>Cursor token for pagination.
limit: Option<u32>Page size limit.
tool_slug: Option<String>Optional tool slug filter.
toolkit_slug: Option<String>Optional toolkit slug filter.
Trait Implementations§
Source§impl Clone for FileListParams
impl Clone for FileListParams
Source§fn clone(&self) -> FileListParams
fn clone(&self) -> FileListParams
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 FileListParams
impl Debug for FileListParams
Source§impl Default for FileListParams
impl Default for FileListParams
Source§fn default() -> FileListParams
fn default() -> FileListParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FileListParams
impl<'de> Deserialize<'de> for FileListParams
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 FileListParams
impl RefUnwindSafe for FileListParams
impl Send for FileListParams
impl Sync for FileListParams
impl Unpin for FileListParams
impl UnsafeUnpin for FileListParams
impl UnwindSafe for FileListParams
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