pub struct WriterOptions {
pub other: Vec<String>,
pub input: Option<String>,
pub output: Option<String>,
}
Expand description
Fields§
§other: Vec<String>
Extended nonstandard writer options.
input: Option<String>
The input format.
output: Option<String>
The output format.
Implementations§
Source§impl WriterOptions
impl WriterOptions
Sourcepub fn builder() -> WriterOptionsBuilder
pub fn builder() -> WriterOptionsBuilder
Create an instance of WriterOptions
using the builder syntax
Trait Implementations§
Source§impl Clone for WriterOptions
impl Clone for WriterOptions
Source§fn clone(&self) -> WriterOptions
fn clone(&self) -> WriterOptions
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 moreSource§impl Debug for WriterOptions
impl Debug for WriterOptions
Source§impl Default for WriterOptions
impl Default for WriterOptions
Source§fn default() -> WriterOptions
fn default() -> WriterOptions
Returns the “default value” for a type. Read more
Source§impl Hash for WriterOptions
impl Hash for WriterOptions
Source§impl Ord for WriterOptions
impl Ord for WriterOptions
Source§fn cmp(&self, other: &WriterOptions) -> Ordering
fn cmp(&self, other: &WriterOptions) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for WriterOptions
impl PartialEq for WriterOptions
Source§impl PartialOrd for WriterOptions
impl PartialOrd for WriterOptions
impl Eq for WriterOptions
impl StructuralPartialEq for WriterOptions
Auto Trait Implementations§
impl Freeze for WriterOptions
impl RefUnwindSafe for WriterOptions
impl Send for WriterOptions
impl Sync for WriterOptions
impl Unpin for WriterOptions
impl UnwindSafe for WriterOptions
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