pub enum BibliographicElement {
Authors(Box<Authors>),
Author(Box<Author>),
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§
Authors(Box<Authors>)
Author(Box<Author>)
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 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 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<AuthorInfo> for BibliographicElement
impl From<AuthorInfo> for BibliographicElement
Source§fn from(inner: AuthorInfo) -> Self
fn from(inner: AuthorInfo) -> Self
Converts to this type from the input type.
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 JsonSchema for BibliographicElement
impl JsonSchema for BibliographicElement
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§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