pub enum BibliographicElement {
Author(Box<Author>),
Authors(Box<Authors>),
Organization(Box<Organization>),
Address(Box<Address>),
Contact(Box<Contact>),
Version(Box<Version>),
Revision(Box<Revision>),
Status(Box<Status>),
Date(Box<Date>),
Copyright(Box<Copyright>),
Field(Box<Field>),
}
Variants§
Author(Box<Author>)
Authors(Box<Authors>)
Organization(Box<Organization>)
Address(Box<Address>)
Contact(Box<Contact>)
Version(Box<Version>)
Revision(Box<Revision>)
Status(Box<Status>)
Date(Box<Date>)
Copyright(Box<Copyright>)
Field(Box<Field>)
Trait Implementations§
Source§impl Clone for BibliographicElement
impl Clone for BibliographicElement
Source§fn clone(&self) -> BibliographicElement
fn clone(&self) -> BibliographicElement
Returns a copy 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 BibliographicElement
impl Debug for BibliographicElement
Source§impl From<Address> for BibliographicElement
impl From<Address> for BibliographicElement
Source§impl From<Author> for BibliographicElement
impl From<Author> for BibliographicElement
Source§impl From<Authors> for BibliographicElement
impl From<Authors> for BibliographicElement
Source§impl From<Contact> for BibliographicElement
impl From<Contact> for BibliographicElement
Source§impl From<Copyright> for BibliographicElement
impl From<Copyright> for BibliographicElement
Source§impl From<Date> for BibliographicElement
impl From<Date> for BibliographicElement
Source§impl From<Field> for BibliographicElement
impl From<Field> for BibliographicElement
Source§impl From<Organization> for BibliographicElement
impl From<Organization> for BibliographicElement
Source§fn from(inner: Organization) -> Self
fn from(inner: Organization) -> Self
Converts to this type from the input type.
Source§impl From<Revision> for BibliographicElement
impl From<Revision> for BibliographicElement
Source§impl From<Status> for BibliographicElement
impl From<Status> for BibliographicElement
Source§impl From<Version> for BibliographicElement
impl From<Version> for BibliographicElement
Source§impl HasChildren<BibliographicElement> for Docinfo
impl HasChildren<BibliographicElement> for Docinfo
fn with_children(children: Vec<BibliographicElement>) -> Docinfo
fn children(&self) -> &Vec<BibliographicElement>
fn children_mut(&mut self) -> &mut Vec<BibliographicElement>
fn append_child<R: Into<C>>(&mut self, child: R)
fn append_children<R: Into<C> + Clone>(&mut self, more: &[R])
Source§impl PartialEq for BibliographicElement
impl PartialEq for BibliographicElement
Source§impl Serialize for BibliographicElement
impl Serialize for BibliographicElement
impl StructuralPartialEq for BibliographicElement
Auto Trait Implementations§
impl Freeze for BibliographicElement
impl RefUnwindSafe for BibliographicElement
impl Send for BibliographicElement
impl Sync for BibliographicElement
impl Unpin for BibliographicElement
impl UnwindSafe for BibliographicElement
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