pub struct ManualRef {
pub uri: String,
pub version: String,
pub inner: Option<ManualRefInner>,
}Expand description
Cross-manual reference by URI with optional inner target.
Fields§
§uri: StringURI of the external manual (may be a file path or registry URL).
version: StringVersion pin or label for the external manual, when specified.
inner: Option<ManualRefInner>Optional entity or group target within the external manual.
Trait Implementations§
impl Eq for ManualRef
impl StructuralPartialEq for ManualRef
Auto Trait Implementations§
impl Freeze for ManualRef
impl RefUnwindSafe for ManualRef
impl Send for ManualRef
impl Sync for ManualRef
impl Unpin for ManualRef
impl UnsafeUnpin for ManualRef
impl UnwindSafe for ManualRef
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