pub struct ManifestPushResult {
pub manifest_list: String,
pub digest: Option<String>,
pub output: String,
pub success: bool,
}Expand description
Result of manifest push command
Fields§
§manifest_list: StringThe manifest list that was pushed
digest: Option<String>The digest of the pushed manifest (if available)
output: StringRaw output from the command
success: boolWhether the command succeeded
Trait Implementations§
Source§impl Clone for ManifestPushResult
impl Clone for ManifestPushResult
Source§fn clone(&self) -> ManifestPushResult
fn clone(&self) -> ManifestPushResult
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for ManifestPushResult
impl RefUnwindSafe for ManifestPushResult
impl Send for ManifestPushResult
impl Sync for ManifestPushResult
impl Unpin for ManifestPushResult
impl UnwindSafe for ManifestPushResult
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