pub struct Config {Show 13 fields
pub repo_path: PathBuf,
pub output_path: PathBuf,
pub include_patterns: Vec<String>,
pub exclude_patterns: Vec<String>,
pub theme: String,
pub font_size: f64,
pub no_line_numbers: bool,
pub toc: bool,
pub file_tree: bool,
pub branch: Option<String>,
pub commit: Option<String>,
pub paper_size: PaperSize,
pub landscape: bool,
}Fields§
§repo_path: PathBuf§output_path: PathBuf§include_patterns: Vec<String>§exclude_patterns: Vec<String>§theme: String§font_size: f64§no_line_numbers: bool§toc: bool§file_tree: bool§branch: Option<String>§commit: Option<String>§paper_size: PaperSize§landscape: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnsafeUnpin for Config
impl UnwindSafe for Config
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
Source§fn to_owned_obj(&self, data: FontData<'_>) -> U
fn to_owned_obj(&self, data: FontData<'_>) -> U
Convert this type into
T, using the provided data to resolve any offsets.