pub enum RefKind {
Unspecified,
Internal,
External,
Component,
Inline,
}Expand description
Classification of a structural reference in source.
Variants§
Unspecified
Reference kind not specified or unrecognized.
Internal
Reference to another entity in the same manual.
External
Reference to an entity outside the manual (by FQN or URL).
Component
OpenAPI-style component reference.
Inline
Inline definition with no separate entity target.
Trait Implementations§
impl Copy for RefKind
impl Eq for RefKind
impl StructuralPartialEq for RefKind
Auto Trait Implementations§
impl Freeze for RefKind
impl RefUnwindSafe for RefKind
impl Send for RefKind
impl Sync for RefKind
impl Unpin for RefKind
impl UnsafeUnpin for RefKind
impl UnwindSafe for RefKind
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