pub struct BatchUpdateBlockRespData {
pub blocks: Vec<DetailedBlock>,
pub document_revision_id: i64,
}Expand description
批量更新块响应数据
Fields§
§blocks: Vec<DetailedBlock>更新的块列表
document_revision_id: i64文档版本ID
Trait Implementations§
Source§impl ApiResponseTrait for BatchUpdateBlockRespData
impl ApiResponseTrait for BatchUpdateBlockRespData
Source§fn data_format() -> ResponseFormat
fn data_format() -> ResponseFormat
是否是标准数据格式, 既是用data包裹数据
fn from_binary(_file_name: String, _body: Vec<u8>) -> Option<Self>
Source§impl Clone for BatchUpdateBlockRespData
impl Clone for BatchUpdateBlockRespData
Source§fn clone(&self) -> BatchUpdateBlockRespData
fn clone(&self) -> BatchUpdateBlockRespData
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 BatchUpdateBlockRespData
impl Debug for BatchUpdateBlockRespData
Source§impl<'de> Deserialize<'de> for BatchUpdateBlockRespData
impl<'de> Deserialize<'de> for BatchUpdateBlockRespData
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 BatchUpdateBlockRespData
impl RefUnwindSafe for BatchUpdateBlockRespData
impl Send for BatchUpdateBlockRespData
impl Sync for BatchUpdateBlockRespData
impl Unpin for BatchUpdateBlockRespData
impl UnwindSafe for BatchUpdateBlockRespData
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