pub struct SpaceNode {
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>,
pub obj_create_time: Option<String>,
pub obj_edit_time: Option<String>,
pub node_create_time: Option<String>,
pub node_creator: Option<String>,
pub has_child: Option<bool>,
}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>文档标题
obj_create_time: Option<String>文档创建时间(毫秒时间戳)
obj_edit_time: Option<String>文档更新时间(毫秒时间戳)
node_create_time: Option<String>节点创建时间(毫秒时间戳)
node_creator: Option<String>节点创建者
has_child: Option<bool>是否有子节点
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SpaceNode
impl<'de> Deserialize<'de> for SpaceNode
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 SpaceNode
impl RefUnwindSafe for SpaceNode
impl Send for SpaceNode
impl Sync for SpaceNode
impl Unpin for SpaceNode
impl UnwindSafe for SpaceNode
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