pub struct StringifyOptions {Show 15 fields
pub heading_style: HeadingStyle,
pub bullet: char,
pub bullet_ordered: char,
pub emphasis: char,
pub strong: char,
pub fence: char,
pub rule: char,
pub rule_repetition: u8,
pub rule_spaces: bool,
pub close_atx: bool,
pub list_item_indent: ListItemIndent,
pub increment_list_marker: bool,
pub quote: char,
pub fences: bool,
pub resource_link: bool,
}Expand description
Serializer configuration.
Fields§
§heading_style: HeadingStyle§bullet: char§bullet_ordered: char§emphasis: char§strong: char§fence: char§rule: char§rule_repetition: u8§rule_spaces: bool§close_atx: bool§list_item_indent: ListItemIndent§increment_list_marker: bool§quote: char§fences: bool§resource_link: boolTrait Implementations§
Source§impl Clone for StringifyOptions
impl Clone for StringifyOptions
Source§fn clone(&self) -> StringifyOptions
fn clone(&self) -> StringifyOptions
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 StringifyOptions
impl Debug for StringifyOptions
Auto Trait Implementations§
impl Freeze for StringifyOptions
impl RefUnwindSafe for StringifyOptions
impl Send for StringifyOptions
impl Sync for StringifyOptions
impl Unpin for StringifyOptions
impl UnsafeUnpin for StringifyOptions
impl UnwindSafe for StringifyOptions
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