pub struct BacktickOptions {
pub language: String,
pub filename: Option<PathBuf>,
pub other: HashMap<String, String>,
}Expand description
Backtick options extracted from the code fence line.
Fields§
§language: String§filename: Option<PathBuf>§other: HashMap<String, String>Implementations§
Trait Implementations§
Source§impl Clone for BacktickOptions
impl Clone for BacktickOptions
Source§fn clone(&self) -> BacktickOptions
fn clone(&self) -> BacktickOptions
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 BacktickOptions
impl Debug for BacktickOptions
Source§impl Default for BacktickOptions
impl Default for BacktickOptions
Source§fn default() -> BacktickOptions
fn default() -> BacktickOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BacktickOptions
impl RefUnwindSafe for BacktickOptions
impl Send for BacktickOptions
impl Sync for BacktickOptions
impl Unpin for BacktickOptions
impl UnwindSafe for BacktickOptions
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