pub struct InspectOptions {
pub limits: ResourceLimits,
}Expand description
Resource options for container inspection.
Fields§
§limits: ResourceLimitsThe absolute ceilings applied during inspection.
Trait Implementations§
Source§impl Clone for InspectOptions
impl Clone for InspectOptions
Source§fn clone(&self) -> InspectOptions
fn clone(&self) -> InspectOptions
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 moreimpl Copy for InspectOptions
Source§impl Debug for InspectOptions
impl Debug for InspectOptions
Source§impl Default for InspectOptions
impl Default for InspectOptions
Source§fn default() -> InspectOptions
fn default() -> InspectOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InspectOptions
impl<'de> Deserialize<'de> for InspectOptions
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
impl Eq for InspectOptions
Source§impl JsonSchema for InspectOptions
impl JsonSchema for InspectOptions
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for InspectOptions
impl PartialEq for InspectOptions
Source§impl Serialize for InspectOptions
impl Serialize for InspectOptions
impl StructuralPartialEq for InspectOptions
Auto Trait Implementations§
impl Freeze for InspectOptions
impl RefUnwindSafe for InspectOptions
impl Send for InspectOptions
impl Sync for InspectOptions
impl Unpin for InspectOptions
impl UnsafeUnpin for InspectOptions
impl UnwindSafe for InspectOptions
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