pub enum DocxApiV1 {
Show 19 variants
ChatAnnouncementGet(String),
ChatAnnouncementBlockList(String),
ChatAnnouncementBlockChildrenCreate(String, String),
ChatAnnouncementBlockBatchUpdate(String),
ChatAnnouncementBlockGet(String, String),
ChatAnnouncementBlockChildrenGet(String, String),
ChatAnnouncementBlockChildrenBatchDelete(String, String),
DocumentCreate,
DocumentGet(String),
DocumentRawContent(String),
DocumentBlockList(String),
DocumentBlockChildrenCreate(String, String),
DocumentBlockDescendantCreate(String, String),
DocumentBlockPatch(String, String),
DocumentBlockGet(String, String),
DocumentBlockBatchUpdate(String),
DocumentBlockChildrenGet(String, String),
DocumentBlockChildrenBatchDelete(String, String),
DocumentConvert,
}Expand description
Docx API V1 端点枚举
Variants§
ChatAnnouncementGet(String)
获取群公告基本信息
ChatAnnouncementBlockList(String)
获取群公告所有块
ChatAnnouncementBlockChildrenCreate(String, String)
在群公告中创建块
ChatAnnouncementBlockBatchUpdate(String)
批量更新群公告块的内容
ChatAnnouncementBlockGet(String, String)
获取群公告块的内容
ChatAnnouncementBlockChildrenGet(String, String)
获取所有子块
ChatAnnouncementBlockChildrenBatchDelete(String, String)
删除群公告中的块
DocumentCreate
创建文档
DocumentGet(String)
获取文档基本信息
DocumentRawContent(String)
获取文档纯文本内容
DocumentBlockList(String)
获取文档所有块
DocumentBlockChildrenCreate(String, String)
创建块
DocumentBlockDescendantCreate(String, String)
创建嵌套块
DocumentBlockPatch(String, String)
更新块的内容
DocumentBlockGet(String, String)
获取块的内容
DocumentBlockBatchUpdate(String)
批量更新块的内容
DocumentBlockChildrenGet(String, String)
获取所有子块
DocumentBlockChildrenBatchDelete(String, String)
删除块
DocumentConvert
Markdown/HTML 内容转换为文档块
Implementations§
Trait Implementations§
impl StructuralPartialEq for DocxApiV1
Auto Trait Implementations§
impl Freeze for DocxApiV1
impl RefUnwindSafe for DocxApiV1
impl Send for DocxApiV1
impl Sync for DocxApiV1
impl Unpin for DocxApiV1
impl UnsafeUnpin for DocxApiV1
impl UnwindSafe for DocxApiV1
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