pub struct CreatedNode {
pub space_id: String,
pub node_token: String,
pub obj_type: String,
pub parent_node_token: Option<String>,
pub node_type: Option<String>,
pub obj_token: Option<String>,
pub title: Option<String>,
}Expand description
创建的节点信息
Fields§
§space_id: String知识空间id
node_token: String节点token
obj_type: String文档类型
parent_node_token: Option<String>父节点token
node_type: Option<String>节点类型
obj_token: Option<String>原始文档token
title: Option<String>文档标题
Trait Implementations§
Source§impl Debug for CreatedNode
impl Debug for CreatedNode
Source§impl<'de> Deserialize<'de> for CreatedNode
impl<'de> Deserialize<'de> for CreatedNode
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 CreatedNode
impl RefUnwindSafe for CreatedNode
impl Send for CreatedNode
impl Sync for CreatedNode
impl Unpin for CreatedNode
impl UnwindSafe for CreatedNode
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