pub struct ManifestAnnotateResult {
pub manifest_list: String,
pub manifest: String,
pub output: String,
pub success: bool,
}Expand description
Result of manifest annotate command
Fields§
§manifest_list: StringThe manifest list that was annotated
manifest: StringThe manifest that was annotated
output: StringRaw output from the command
success: boolWhether the command succeeded
Trait Implementations§
Source§impl Clone for ManifestAnnotateResult
impl Clone for ManifestAnnotateResult
Source§fn clone(&self) -> ManifestAnnotateResult
fn clone(&self) -> ManifestAnnotateResult
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 ManifestAnnotateResult
impl RefUnwindSafe for ManifestAnnotateResult
impl Send for ManifestAnnotateResult
impl Sync for ManifestAnnotateResult
impl Unpin for ManifestAnnotateResult
impl UnwindSafe for ManifestAnnotateResult
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