pub struct ComposeCpResult {
pub stdout: String,
pub stderr: String,
pub success: bool,
pub source: String,
pub destination: String,
}Expand description
Result from compose cp command
Fields§
§stdout: StringRaw stdout output
stderr: StringRaw stderr output
success: boolSuccess status
source: StringSource path used
destination: StringDestination path used
Implementations§
Trait Implementations§
Source§impl Clone for ComposeCpResult
impl Clone for ComposeCpResult
Source§fn clone(&self) -> ComposeCpResult
fn clone(&self) -> ComposeCpResult
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 ComposeCpResult
impl RefUnwindSafe for ComposeCpResult
impl Send for ComposeCpResult
impl Sync for ComposeCpResult
impl Unpin for ComposeCpResult
impl UnwindSafe for ComposeCpResult
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