pub struct SaveResult {
pub output: CommandOutput,
pub images: Vec<String>,
pub output_file: Option<String>,
}
Expand description
Result from the save command
Fields§
§output: CommandOutput
Raw command output
images: Vec<String>
Images that were saved
output_file: Option<String>
Output file path if specified
Implementations§
Trait Implementations§
Source§impl Clone for SaveResult
impl Clone for SaveResult
Source§fn clone(&self) -> SaveResult
fn clone(&self) -> SaveResult
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 SaveResult
impl RefUnwindSafe for SaveResult
impl Send for SaveResult
impl Sync for SaveResult
impl Unpin for SaveResult
impl UnwindSafe for SaveResult
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