Struct docker_api::models::ObjectVersion
source · pub struct ObjectVersion {
pub index: Option<u64>,
}
Expand description
The version number of the object such as node, service, etc. This is needed to avoid conflicting writes. The client must send the version number along with the modified specification when updating these objects.
This approach ensures safe concurrency and determinism in that the change on the object may not be applied if the version number has changed from the last read. In other words, if two update requests specify the same base version, only one of the requests can succeed. As a result, two separate update requests that happen at the same time will not unintentionally overwrite each other.
Fields§
§index: Option<u64>
Trait Implementations§
source§impl Clone for ObjectVersion
impl Clone for ObjectVersion
source§fn clone(&self) -> ObjectVersion
fn clone(&self) -> ObjectVersion
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 ObjectVersion
impl Debug for ObjectVersion
source§impl<'de> Deserialize<'de> for ObjectVersion
impl<'de> Deserialize<'de> for ObjectVersion
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<ObjectVersion, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<ObjectVersion, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<ObjectVersion> for ObjectVersion
impl PartialEq<ObjectVersion> for ObjectVersion
source§fn eq(&self, other: &ObjectVersion) -> bool
fn eq(&self, other: &ObjectVersion) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ObjectVersion
impl Serialize for ObjectVersion
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