Struct docker_api::models::ComponentVersion
source · pub struct ComponentVersion {
pub details: Option<Value>,
pub name: String,
pub version: String,
}
Fields§
§details: Option<Value>
Key/value pairs of strings with additional information about the component. These values are intended for informational purposes only, and their content is not defined, and not part of the API specification.
These messages can be printed by the client as information to the user.
name: String
Name of the component
version: String
Version of the component
Trait Implementations§
source§impl Clone for ComponentVersion
impl Clone for ComponentVersion
source§fn clone(&self) -> ComponentVersion
fn clone(&self) -> ComponentVersion
Returns a copy 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 Debug for ComponentVersion
impl Debug for ComponentVersion
source§impl<'de> Deserialize<'de> for ComponentVersion
impl<'de> Deserialize<'de> for ComponentVersion
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<ComponentVersion, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<ComponentVersion, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<ComponentVersion> for ComponentVersion
impl PartialEq<ComponentVersion> for ComponentVersion
source§fn eq(&self, other: &ComponentVersion) -> bool
fn eq(&self, other: &ComponentVersion) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ComponentVersion
impl Serialize for ComponentVersion
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more