pub struct GfmOptions {
pub autolinks: GfmAutolinkPolicy,
pub tagfilter: bool,
}Expand description
Recognition toggles for GitHub Flavored Markdown extensions.
Fields§
§autolinks: GfmAutolinkPolicy§tagfilter: boolTrait Implementations§
Source§impl Clone for GfmOptions
impl Clone for GfmOptions
Source§fn clone(&self) -> GfmOptions
fn clone(&self) -> GfmOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GfmOptions
impl Debug for GfmOptions
Source§impl Default for GfmOptions
impl Default for GfmOptions
Source§impl PartialEq for GfmOptions
impl PartialEq for GfmOptions
Source§fn eq(&self, other: &GfmOptions) -> bool
fn eq(&self, other: &GfmOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for GfmOptions
impl Eq for GfmOptions
impl StructuralPartialEq for GfmOptions
Auto Trait Implementations§
impl Freeze for GfmOptions
impl RefUnwindSafe for GfmOptions
impl Send for GfmOptions
impl Sync for GfmOptions
impl Unpin for GfmOptions
impl UnsafeUnpin for GfmOptions
impl UnwindSafe for GfmOptions
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