pub struct Options {
pub num_threads: u32,
pub quick_render: bool,
pub quiet: bool,
pub verbose: bool,
pub image_file: String,
}
Expand description
Options for the renderer. These are mostly passed through from commandline flags or from the configuration file parsed.
Fields§
§num_threads: u32
number of threads to use when rendering.
quick_render: bool
Not implemented: enable some options for quick draft quality rendering.
quiet: bool
Squelch all non-error output.
verbose: bool
Enable extra logging output.
image_file: String
Path to stored rendered output.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Options
impl RefUnwindSafe for Options
impl Send for Options
impl Sync for Options
impl Unpin for Options
impl UnwindSafe for Options
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