pub struct ListFilesOpts {
pub limit: Option<i32>,
pub offset: Option<i32>,
}
Expand description
Options for listing files, allowing for pagination.
Fields§
§limit: Option<i32>
The maximum number of files to return in the response. If not specified, a default limit is applied.
offset: Option<i32>
The number of files to skip before starting to collect the result set. If not specified, a default offset is applied.
Trait Implementations§
Source§impl Default for ListFilesOpts
impl Default for ListFilesOpts
Auto Trait Implementations§
impl Freeze for ListFilesOpts
impl RefUnwindSafe for ListFilesOpts
impl Send for ListFilesOpts
impl Sync for ListFilesOpts
impl Unpin for ListFilesOpts
impl UnwindSafe for ListFilesOpts
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