pub struct ContainerUpdateResponse {
pub warnings: Vec<String>,
}Expand description
Response body for POST /api/v1/containers/{id}/update.
Mirrors Docker’s {"Warnings": [...]} shape so the compat layer
passes the body through verbatim. Warnings is always present (even
if empty) for wire compatibility with clients that match the field
presence, not just its contents.
Fields§
§warnings: Vec<String>Human-readable warnings emitted by the runtime while applying the
update — e.g. "kernel memory limit is deprecated".
Trait Implementations§
Source§impl Clone for ContainerUpdateResponse
impl Clone for ContainerUpdateResponse
Source§fn clone(&self) -> ContainerUpdateResponse
fn clone(&self) -> ContainerUpdateResponse
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 ComposeSchema for ContainerUpdateResponse
impl ComposeSchema for ContainerUpdateResponse
Source§impl Debug for ContainerUpdateResponse
impl Debug for ContainerUpdateResponse
Source§impl Default for ContainerUpdateResponse
impl Default for ContainerUpdateResponse
Source§fn default() -> ContainerUpdateResponse
fn default() -> ContainerUpdateResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContainerUpdateResponse
impl<'de> Deserialize<'de> for ContainerUpdateResponse
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
Source§impl PartialEq for ContainerUpdateResponse
impl PartialEq for ContainerUpdateResponse
Source§impl Serialize for ContainerUpdateResponse
impl Serialize for ContainerUpdateResponse
Source§impl ToSchema for ContainerUpdateResponse
impl ToSchema for ContainerUpdateResponse
impl Eq for ContainerUpdateResponse
impl StructuralPartialEq for ContainerUpdateResponse
Auto Trait Implementations§
impl Freeze for ContainerUpdateResponse
impl RefUnwindSafe for ContainerUpdateResponse
impl Send for ContainerUpdateResponse
impl Sync for ContainerUpdateResponse
impl Unpin for ContainerUpdateResponse
impl UnsafeUnpin for ContainerUpdateResponse
impl UnwindSafe for ContainerUpdateResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.