pub struct Backlink {
pub src_path: String,
pub src_title: Option<String>,
pub alias: Option<String>,
pub header: Option<String>,
pub block_id: Option<String>,
pub kind: String,
}Fields§
§src_path: String§src_title: Option<String>§alias: Option<String>§header: Option<String>§block_id: Option<String>§kind: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for Backlink
impl RefUnwindSafe for Backlink
impl Send for Backlink
impl Sync for Backlink
impl Unpin for Backlink
impl UnsafeUnpin for Backlink
impl UnwindSafe for Backlink
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