pub struct LinkRef {
pub target_name: String,
pub target_path: Option<String>,
pub header: Option<String>,
pub block_id: Option<String>,
pub alias: Option<String>,
pub kind: String,
}Fields§
§target_name: String§target_path: Option<String>§header: Option<String>§block_id: Option<String>§alias: Option<String>§kind: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for LinkRef
impl RefUnwindSafe for LinkRef
impl Send for LinkRef
impl Sync for LinkRef
impl Unpin for LinkRef
impl UnsafeUnpin for LinkRef
impl UnwindSafe for LinkRef
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more