pub struct ListContainerFilesQuery {
pub limit: Option<u32>,
pub order: Option<String>,
pub after: Option<String>,
}Expand description
Query parameters for listing container files.
Fields§
§limit: Option<u32>A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.
order: Option<String>Sort order by the created_at timestamp of the objects. asc for ascending order and desc for descending order.
after: Option<String>A cursor for use in pagination. after is an object ID that defines your place in the list.
Trait Implementations§
Source§impl Clone for ListContainerFilesQuery
impl Clone for ListContainerFilesQuery
Source§fn clone(&self) -> ListContainerFilesQuery
fn clone(&self) -> ListContainerFilesQuery
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 ListContainerFilesQuery
impl Debug for ListContainerFilesQuery
Source§impl Default for ListContainerFilesQuery
impl Default for ListContainerFilesQuery
Source§fn default() -> ListContainerFilesQuery
fn default() -> ListContainerFilesQuery
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListContainerFilesQuery
impl PartialEq for ListContainerFilesQuery
Source§impl Serialize for ListContainerFilesQuery
impl Serialize for ListContainerFilesQuery
impl StructuralPartialEq for ListContainerFilesQuery
Auto Trait Implementations§
impl Freeze for ListContainerFilesQuery
impl RefUnwindSafe for ListContainerFilesQuery
impl Send for ListContainerFilesQuery
impl Sync for ListContainerFilesQuery
impl Unpin for ListContainerFilesQuery
impl UnwindSafe for ListContainerFilesQuery
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