pub enum CalloutRefKind {
Explicit,
Auto,
}Expand description
The kind of callout reference marker (how it was expressed in the source).
Variants§
Explicit
Explicit callout: <1>, <2>, etc. - the number was specified directly.
Auto
Auto-numbered callout: <.> - the number was resolved automatically.
Trait Implementations§
Source§impl Clone for CalloutRefKind
impl Clone for CalloutRefKind
Source§fn clone(&self) -> CalloutRefKind
fn clone(&self) -> CalloutRefKind
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 CalloutRefKind
impl Debug for CalloutRefKind
Source§impl<'de> Deserialize<'de> for CalloutRefKind
impl<'de> Deserialize<'de> for CalloutRefKind
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
Source§impl PartialEq for CalloutRefKind
impl PartialEq for CalloutRefKind
Source§impl Serialize for CalloutRefKind
impl Serialize for CalloutRefKind
impl Copy for CalloutRefKind
impl Eq for CalloutRefKind
impl StructuralPartialEq for CalloutRefKind
Auto Trait Implementations§
impl Freeze for CalloutRefKind
impl RefUnwindSafe for CalloutRefKind
impl Send for CalloutRefKind
impl Sync for CalloutRefKind
impl Unpin for CalloutRefKind
impl UnwindSafe for CalloutRefKind
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