pub struct LinkResult {
pub note_id: i64,
pub note_path: String,
pub note_title: String,
pub is_embed: bool,
pub alias: Option<String>,
pub heading_ref: Option<String>,
pub block_ref: Option<String>,
}Fields§
§note_id: i64§note_path: String§note_title: String§is_embed: bool§alias: Option<String>§heading_ref: Option<String>§block_ref: Option<String>Trait Implementations§
Source§impl Clone for LinkResult
impl Clone for LinkResult
Source§fn clone(&self) -> LinkResult
fn clone(&self) -> LinkResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LinkResult
impl RefUnwindSafe for LinkResult
impl Send for LinkResult
impl Sync for LinkResult
impl Unpin for LinkResult
impl UnsafeUnpin for LinkResult
impl UnwindSafe for LinkResult
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