pub struct ManifestRmResult {
pub manifest_lists: Vec<String>,
pub output: String,
pub success: bool,
}Expand description
Result of manifest rm command
Fields§
§manifest_lists: Vec<String>The manifest lists that were removed
output: StringRaw output from the command
success: boolWhether the command succeeded
Trait Implementations§
Source§impl Clone for ManifestRmResult
impl Clone for ManifestRmResult
Source§fn clone(&self) -> ManifestRmResult
fn clone(&self) -> ManifestRmResult
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 ManifestRmResult
impl RefUnwindSafe for ManifestRmResult
impl Send for ManifestRmResult
impl Sync for ManifestRmResult
impl Unpin for ManifestRmResult
impl UnwindSafe for ManifestRmResult
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