pub struct NodeView {
pub id: NodeId,
pub title: Title,
pub tags: Vec<Tag>,
pub document: Document,
pub created_at: String,
pub updated_at: String,
}Expand description
Full node response: identity, derived metadata, the AST, and timestamps.
Fields§
§id: NodeId§title: Title§document: Document§created_at: String§updated_at: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for NodeView
impl<'de> Deserialize<'de> for NodeView
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 NodeView
impl StructuralPartialEq for NodeView
Auto Trait Implementations§
impl Freeze for NodeView
impl RefUnwindSafe for NodeView
impl Send for NodeView
impl Sync for NodeView
impl Unpin for NodeView
impl UnsafeUnpin for NodeView
impl UnwindSafe for NodeView
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