pub struct CommonOpts {
pub input_path: Option<PathBuf>,
pub output_path: Option<PathBuf>,
}Expand description
Options shared across all three binaries (I/O paths).
Fields§
§input_path: Option<PathBuf>None → stdin.
output_path: Option<PathBuf>None → stdout.
Trait Implementations§
Source§impl Clone for CommonOpts
impl Clone for CommonOpts
Source§fn clone(&self) -> CommonOpts
fn clone(&self) -> CommonOpts
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CommonOpts
impl Debug for CommonOpts
Source§impl Default for CommonOpts
impl Default for CommonOpts
Source§fn default() -> CommonOpts
fn default() -> CommonOpts
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CommonOpts
impl RefUnwindSafe for CommonOpts
impl Send for CommonOpts
impl Sync for CommonOpts
impl Unpin for CommonOpts
impl UnsafeUnpin for CommonOpts
impl UnwindSafe for CommonOpts
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