pub struct Cite {
pub id: Option<String>,
pub lang: Option<LanguageTag>,
pub elements: Vec<CiteElement>,
pub text_authors: Vec<Paragraph>,
}Expand description
A citation with an optional citation author at the end
Fields§
§id: Option<String>§lang: Option<LanguageTag>§elements: Vec<CiteElement>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Cite
impl<'de> Deserialize<'de> for Cite
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
impl StructuralPartialEq for Cite
Auto Trait Implementations§
impl Freeze for Cite
impl RefUnwindSafe for Cite
impl Send for Cite
impl Sync for Cite
impl Unpin for Cite
impl UnwindSafe for Cite
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