Struct podman_api::models::History [−][src]
pub struct History {
pub author: Option<String>,
pub comment: Option<String>,
pub created: Option<DateTime<Utc>>,
pub created_by: Option<String>,
pub empty_layer: Option<bool>,
}
Fields
Author is the author of the build point.
comment: Option<String>
Comment is a custom message set when creating the layer.
created: Option<DateTime<Utc>>
Created is the combined date and time at which the layer was created, formatted as defined by RFC 3339, section 5.6.
created_by: Option<String>
CreatedBy is the command which created the layer.
empty_layer: Option<bool>
EmptyLayer is used to mark if the history item created a filesystem diff.
Trait Implementations
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<History, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<History, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub 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
Auto Trait Implementations
impl RefUnwindSafe for History
impl UnwindSafe for History
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more