pub struct Container {
pub id: String,
pub created_at: String,
pub state: ContainerState,
pub deployment_id: String,
pub internal_ip: Option<String>,
pub region: String,
pub uptime: Option<Uptime>,
pub type_: ContainerType,
}Fields
id: Stringcreated_at: Stringstate: ContainerStatedeployment_id: Stringinternal_ip: Option<String>region: Stringuptime: Option<Uptime>type_: ContainerTypeTrait Implementations
sourceimpl<'de> Deserialize<'de> for Container
impl<'de> Deserialize<'de> for Container
sourcefn 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 RefUnwindSafe for Container
impl Send for Container
impl Sync for Container
impl Unpin for Container
impl UnwindSafe for Container
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more