pub struct Rf {
pub reference: String,
pub role: Option<String>,
pub title: Option<String>,
pub content: String,
}Expand description
Internal reference (pathless identifier)
Fields§
§reference: StringReference identifier (e.g., “president:47”, “article:1”) Format: namespace:identifier
role: Option<String>Reference role or relationship type
title: Option<String>Hover text or description
content: StringLink text (plain text only)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Rf
impl<'de> Deserialize<'de> for Rf
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
impl StructuralPartialEq for Rf
Auto Trait Implementations§
impl Freeze for Rf
impl RefUnwindSafe for Rf
impl Send for Rf
impl Sync for Rf
impl Unpin for Rf
impl UnwindSafe for Rf
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