pub struct PendingLink {
pub source_id: String,
pub raw_target: String,
pub relation_type: String,
pub created_at: i64,
}Expand description
Unresolved link kept for later resolution.
Fields§
§source_id: StringSource node id that referenced the target.
raw_target: StringRaw WikiLink / symbol:… target text.
relation_type: StringIntended relation type (relates_to, anchors, …).
created_at: i64When the pending link was recorded (unix seconds).
Trait Implementations§
Source§impl Clone for PendingLink
impl Clone for PendingLink
Source§fn clone(&self) -> PendingLink
fn clone(&self) -> PendingLink
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 PendingLink
impl Debug for PendingLink
Source§impl<'de> Deserialize<'de> for PendingLink
impl<'de> Deserialize<'de> for PendingLink
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PendingLink
impl RefUnwindSafe for PendingLink
impl Send for PendingLink
impl Sync for PendingLink
impl Unpin for PendingLink
impl UnsafeUnpin for PendingLink
impl UnwindSafe for PendingLink
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