#[repr(C)]pub enum cmark_event_type {
CMARK_EVENT_NONE = 0,
CMARK_EVENT_DONE = 1,
CMARK_EVENT_ENTER = 2,
CMARK_EVENT_EXIT = 3,
}Variants§
Trait Implementations§
Source§impl Clone for cmark_event_type
impl Clone for cmark_event_type
Source§fn clone(&self) -> cmark_event_type
fn clone(&self) -> cmark_event_type
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 PartialEq for cmark_event_type
impl PartialEq for cmark_event_type
impl Copy for cmark_event_type
impl Eq for cmark_event_type
impl StructuralPartialEq for cmark_event_type
Auto Trait Implementations§
impl Freeze for cmark_event_type
impl RefUnwindSafe for cmark_event_type
impl Send for cmark_event_type
impl Sync for cmark_event_type
impl Unpin for cmark_event_type
impl UnwindSafe for cmark_event_type
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