pub struct RecipeOptions {
pub active_directory: PathBuf,
pub case_type: CaseType,
pub case_abbreviations: bool,
pub case_exceptions: Vec<String>,
pub entry_name: String,
pub preprocess_text: bool,
pub preprocess_pretty: bool,
pub preserve_folders: bool,
pub cc: Option<String>,
pub cflags: Option<String>,
}Fields§
§active_directory: PathBuf§case_type: CaseType§case_abbreviations: bool§case_exceptions: Vec<String>§entry_name: String§preprocess_text: bool§preprocess_pretty: bool§preserve_folders: bool§cc: Option<String>§cflags: Option<String>Trait Implementations§
Source§impl Clone for RecipeOptions
impl Clone for RecipeOptions
Source§fn clone(&self) -> RecipeOptions
fn clone(&self) -> RecipeOptions
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 RecipeOptions
impl RefUnwindSafe for RecipeOptions
impl Send for RecipeOptions
impl Sync for RecipeOptions
impl Unpin for RecipeOptions
impl UnwindSafe for RecipeOptions
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