pub struct FootnoteReference {
pub refid: Option<ID>,
pub refname: Vec<NameToken>,
pub auto: Option<FootnoteType>,
}Fields§
§refid: Option<ID>§refname: Vec<NameToken>§auto: Option<FootnoteType>Trait Implementations§
Source§impl Clone for FootnoteReference
impl Clone for FootnoteReference
Source§fn clone(&self) -> FootnoteReference
fn clone(&self) -> FootnoteReference
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 FootnoteReference
impl Debug for FootnoteReference
Source§impl Default for FootnoteReference
impl Default for FootnoteReference
Source§fn default() -> FootnoteReference
fn default() -> FootnoteReference
Returns the “default value” for a type. Read more
Source§impl ExtraAttributes<FootnoteReference> for FootnoteReference
impl ExtraAttributes<FootnoteReference> for FootnoteReference
fn with_extra(extra: FootnoteReference) -> FootnoteReference
fn extra(&self) -> &FootnoteReference
fn extra_mut(&mut self) -> &mut FootnoteReference
Source§impl JsonSchema for FootnoteReference
impl JsonSchema for FootnoteReference
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 FootnoteReference
impl PartialEq for FootnoteReference
Source§impl Serialize for FootnoteReference
impl Serialize for FootnoteReference
impl StructuralPartialEq for FootnoteReference
Auto Trait Implementations§
impl Freeze for FootnoteReference
impl RefUnwindSafe for FootnoteReference
impl Send for FootnoteReference
impl Sync for FootnoteReference
impl Unpin for FootnoteReference
impl UnwindSafe for FootnoteReference
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