pub struct PrefixGroup { /* private fields */ }
Expand description
§Prefix Group
§Examples
§Markdown Quote
let mut group = panduck_pp::PrefixGroup::default();
group.set_mark("> ", "> ");
> text1 text2 text3
> text1
> text2
> text3
§Markdown Orderless List
let mut group = panduck_pp::PrefixGroup::default();
group.set_mark("> ", "> ");
- text1 text2 text3
- text1
text2
text3
Implementations§
Source§impl PrefixGroup
impl PrefixGroup
Source§impl PrefixGroup
impl PrefixGroup
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PrefixGroup
impl RefUnwindSafe for PrefixGroup
impl Send for PrefixGroup
impl Sync for PrefixGroup
impl Unpin for PrefixGroup
impl UnwindSafe for PrefixGroup
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