pub struct ContainerSummary {
pub format: String,
pub container_kind: String,
pub entries: Vec<ContainerEntry>,
pub notes: Vec<String>,
}Expand description
The result of inspecting a container without decoding its geometry.
Fields§
§format: StringSource format id.
container_kind: StringContainer kind, e.g. "zip".
entries: Vec<ContainerEntry>Enumerated entries.
notes: Vec<String>Codec-defined informational notes.
Trait Implementations§
Source§impl Clone for ContainerSummary
impl Clone for ContainerSummary
Source§fn clone(&self) -> ContainerSummary
fn clone(&self) -> ContainerSummary
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 ContainerSummary
impl Debug for ContainerSummary
Source§impl<'de> Deserialize<'de> for ContainerSummary
impl<'de> Deserialize<'de> for ContainerSummary
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 ContainerSummary
Source§impl JsonSchema for ContainerSummary
impl JsonSchema for ContainerSummary
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 ContainerSummary
impl PartialEq for ContainerSummary
Source§impl Serialize for ContainerSummary
impl Serialize for ContainerSummary
impl StructuralPartialEq for ContainerSummary
Auto Trait Implementations§
impl Freeze for ContainerSummary
impl RefUnwindSafe for ContainerSummary
impl Send for ContainerSummary
impl Sync for ContainerSummary
impl Unpin for ContainerSummary
impl UnsafeUnpin for ContainerSummary
impl UnwindSafe for ContainerSummary
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