pub struct OutlineReference {
pub path: NodePath,
pub id: NodeId,
pub title: String,
}Expand description
Compact ancestor identity attached to an excerpt selection.
Fields§
§path: NodePathCanonical structural outline path.
id: NodeIdStable document-local identity.
title: StringDisplay title.
Trait Implementations§
Source§impl Clone for OutlineReference
impl Clone for OutlineReference
Source§fn clone(&self) -> OutlineReference
fn clone(&self) -> OutlineReference
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 OutlineReference
impl Debug for OutlineReference
Source§impl<'de> Deserialize<'de> for OutlineReference
impl<'de> Deserialize<'de> for OutlineReference
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 Eq for OutlineReference
Source§impl JsonSchema for OutlineReference
impl JsonSchema for OutlineReference
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for OutlineReference
impl PartialEq for OutlineReference
Source§impl Serialize for OutlineReference
impl Serialize for OutlineReference
impl StructuralPartialEq for OutlineReference
Auto Trait Implementations§
impl Freeze for OutlineReference
impl RefUnwindSafe for OutlineReference
impl Send for OutlineReference
impl Sync for OutlineReference
impl Unpin for OutlineReference
impl UnsafeUnpin for OutlineReference
impl UnwindSafe for OutlineReference
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