pub enum AnnotationType {
Tag(TagAnnotation),
Copy(RawCopy),
Null(NoopAnnotation),
}Variants§
Implementations§
Trait Implementations§
Source§impl AnnotationFunc for AnnotationType
impl AnnotationFunc for AnnotationType
fn proc( &self, src: &SourceEvent, data: &mut DataRecord, ) -> Result<(), WparseError>
Source§impl Clone for AnnotationType
impl Clone for AnnotationType
Source§fn clone(&self) -> AnnotationType
fn clone(&self) -> AnnotationType
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 moreAuto Trait Implementations§
impl Freeze for AnnotationType
impl RefUnwindSafe for AnnotationType
impl Send for AnnotationType
impl Sync for AnnotationType
impl Unpin for AnnotationType
impl UnsafeUnpin for AnnotationType
impl UnwindSafe for AnnotationType
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