pub struct ContainerListResponse {
pub id: String,
pub created_at: i64,
pub name: String,
pub object: String,
pub status: String,
pub expires_after: Option<ExpiresAfter>,
pub last_active_at: Option<i64>,
pub memory_limit: Option<ContainerListResponseMemoryLimit>,
pub network_policy: Option<NetworkPolicy>,
}Fields§
§id: StringUnique identifier for the container.
created_at: i64Unix timestamp (in seconds) when the container was created.
name: StringName of the container.
object: StringThe type of this object.
status: StringStatus of the container (e.g., active, deleted).
expires_after: Option<ExpiresAfter>The container will expire after this time period. The anchor is the reference
last_active_at: Option<i64>Unix timestamp (in seconds) when the container was last active.
memory_limit: Option<ContainerListResponseMemoryLimit>The memory limit configured for the container.
network_policy: Option<NetworkPolicy>Network access policy for the container.
Trait Implementations§
Source§impl Clone for ContainerListResponse
impl Clone for ContainerListResponse
Source§fn clone(&self) -> ContainerListResponse
fn clone(&self) -> ContainerListResponse
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 ContainerListResponse
impl Debug for ContainerListResponse
Source§impl<'de> Deserialize<'de> for ContainerListResponse
impl<'de> Deserialize<'de> for ContainerListResponse
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 ContainerListResponse
impl RefUnwindSafe for ContainerListResponse
impl Send for ContainerListResponse
impl Sync for ContainerListResponse
impl Unpin for ContainerListResponse
impl UnsafeUnpin for ContainerListResponse
impl UnwindSafe for ContainerListResponse
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