pub struct FinalizeImageReply {
pub manifest_digest: String,
pub manifest_verity: String,
pub config_digest: String,
pub config_verity: String,
}Expand description
Reply from FinalizeImage: digest and verity strings for the manifest
and config splitstreams that were written (or already existed).
Fields§
§manifest_digest: StringOCI digest of the manifest (e.g. "sha256:abcd...").
manifest_verity: StringHex-encoded fs-verity hash of the manifest splitstream.
config_digest: StringOCI digest of the config (e.g. "sha256:abcd...").
config_verity: StringHex-encoded fs-verity hash of the config splitstream.
Trait Implementations§
Source§impl Clone for FinalizeImageReply
impl Clone for FinalizeImageReply
Source§fn clone(&self) -> FinalizeImageReply
fn clone(&self) -> FinalizeImageReply
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 FinalizeImageReply
impl Debug for FinalizeImageReply
Source§impl<'de> Deserialize<'de> for FinalizeImageReply
impl<'de> Deserialize<'de> for FinalizeImageReply
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
Source§impl Serialize for FinalizeImageReply
impl Serialize for FinalizeImageReply
Auto Trait Implementations§
impl Freeze for FinalizeImageReply
impl RefUnwindSafe for FinalizeImageReply
impl Send for FinalizeImageReply
impl Sync for FinalizeImageReply
impl Unpin for FinalizeImageReply
impl UnsafeUnpin for FinalizeImageReply
impl UnwindSafe for FinalizeImageReply
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
§impl<S> CanonJsonSerialize for Swhere
S: Serialize,
impl<S> CanonJsonSerialize for Swhere
S: Serialize,
§fn to_canon_json_writer<W>(&self, writer: W) -> Result<(), Error>where
W: Write,
fn to_canon_json_writer<W>(&self, writer: W) -> Result<(), Error>where
W: Write,
Serialize the given data structure as JSON into the I/O stream.
§fn to_canon_json_vec(&self) -> Result<Vec<u8>, Error>
fn to_canon_json_vec(&self) -> Result<Vec<u8>, Error>
Serialize the given data structure as a JSON byte vector.
§fn to_canon_json_string(&self) -> Result<String, Error>
fn to_canon_json_string(&self) -> Result<String, Error>
Serialize the given data structure as a String.
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more