pub struct ContainerListParams {
pub after: Option<String>,
pub limit: Option<i64>,
pub name: Option<String>,
pub order: Option<ContainerListParamsOrder>,
}Fields§
§after: Option<String>A cursor for use in pagination.
limit: Option<i64>A limit on the number of objects to be returned.
name: Option<String>Filter results by container name.
order: Option<ContainerListParamsOrder>Sort order by the created_at timestamp of the objects.
Trait Implementations§
Source§impl Clone for ContainerListParams
impl Clone for ContainerListParams
Source§fn clone(&self) -> ContainerListParams
fn clone(&self) -> ContainerListParams
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 ContainerListParams
impl Debug for ContainerListParams
Source§impl<'de> Deserialize<'de> for ContainerListParams
impl<'de> Deserialize<'de> for ContainerListParams
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 ContainerListParams
impl RefUnwindSafe for ContainerListParams
impl Send for ContainerListParams
impl Sync for ContainerListParams
impl Unpin for ContainerListParams
impl UnsafeUnpin for ContainerListParams
impl UnwindSafe for ContainerListParams
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