pub enum AnnotationElement {
Paragraph(Paragraph),
Poem(Poem),
Cite(Cite),
Subtitle(Paragraph),
Table(Table),
EmptyLine,
}
Variants§
Trait Implementations§
Source§impl Debug for AnnotationElement
impl Debug for AnnotationElement
Source§impl<'de> Deserialize<'de> for AnnotationElement
impl<'de> Deserialize<'de> for AnnotationElement
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AnnotationElement
impl PartialEq for AnnotationElement
Source§impl Serialize for AnnotationElement
impl Serialize for AnnotationElement
impl StructuralPartialEq for AnnotationElement
Auto Trait Implementations§
impl Freeze for AnnotationElement
impl RefUnwindSafe for AnnotationElement
impl Send for AnnotationElement
impl Sync for AnnotationElement
impl Unpin for AnnotationElement
impl UnwindSafe for AnnotationElement
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