pub enum ManualRefInner {
Entity(EntityRef),
Group(GroupRef),
}Expand description
Inner target of a ManualRef cross-manual link.
Variants§
Entity(EntityRef)
Link to a specific entity in the external manual.
Group(GroupRef)
Link to a group overview in the external manual.
Trait Implementations§
Source§impl Clone for ManualRefInner
impl Clone for ManualRefInner
Source§fn clone(&self) -> ManualRefInner
fn clone(&self) -> ManualRefInner
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ManualRefInner
impl Debug for ManualRefInner
impl Eq for ManualRefInner
Source§impl PartialEq for ManualRefInner
impl PartialEq for ManualRefInner
Source§fn eq(&self, other: &ManualRefInner) -> bool
fn eq(&self, other: &ManualRefInner) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ManualRefInner
Auto Trait Implementations§
impl Freeze for ManualRefInner
impl RefUnwindSafe for ManualRefInner
impl Send for ManualRefInner
impl Sync for ManualRefInner
impl Unpin for ManualRefInner
impl UnsafeUnpin for ManualRefInner
impl UnwindSafe for ManualRefInner
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