pub struct DetailedBlock {
pub block_id: String,
pub parent_id: String,
pub children: Vec<String>,
pub block_type: i32,
pub index: i32,
pub block: Value,
}Expand description
详细块信息
Fields§
§block_id: String块ID
parent_id: String父块ID
children: Vec<String>子块ID列表
block_type: i32块类型
index: i32块索引
block: Value块内容
Trait Implementations§
Source§impl Clone for DetailedBlock
impl Clone for DetailedBlock
Source§fn clone(&self) -> DetailedBlock
fn clone(&self) -> DetailedBlock
Returns a duplicate of the value. Read more
1.0.0 · 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 DetailedBlock
impl Debug for DetailedBlock
Source§impl<'de> Deserialize<'de> for DetailedBlock
impl<'de> Deserialize<'de> for DetailedBlock
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 DetailedBlock
impl RefUnwindSafe for DetailedBlock
impl Send for DetailedBlock
impl Sync for DetailedBlock
impl Unpin for DetailedBlock
impl UnwindSafe for DetailedBlock
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