pub struct CiteGroup {
pub type_: CiteGroup_,
pub items: Vec<Cite>,
pub id: Option<Box<String>>,
}
Expand description
A group of Cite nodes.
Fields§
§type_: CiteGroup_
The name of this type
items: Vec<Cite>
One or more Cite
s to be referenced in the same surrounding text.
id: Option<Box<String>>
The identifier for this item.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CiteGroup
impl<'de> Deserialize<'de> for CiteGroup
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
Auto Trait Implementations§
impl Freeze for CiteGroup
impl RefUnwindSafe for CiteGroup
impl Send for CiteGroup
impl Sync for CiteGroup
impl Unpin for CiteGroup
impl UnwindSafe for CiteGroup
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