pub enum CcmDocApiOld {
Create,
Meta(String),
SheetMeta(String),
RawContent(String),
Content(String),
BatchUpdate(String),
}Expand description
CCM Doc API Old V1 端点枚举 对应 meta.project = ccm_doc, meta.version = old
Variants§
Create
创建旧版文档
Meta(String)
获取旧版文档元信息
SheetMeta(String)
获取旧版文档中的电子表格元数据
RawContent(String)
获取旧版文档纯文本内容
Content(String)
获取旧版文档富文本内容
BatchUpdate(String)
编辑旧版文档内容
Implementations§
Trait Implementations§
Source§impl Clone for CcmDocApiOld
impl Clone for CcmDocApiOld
Source§fn clone(&self) -> CcmDocApiOld
fn clone(&self) -> CcmDocApiOld
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CcmDocApiOld
impl Debug for CcmDocApiOld
Source§impl PartialEq for CcmDocApiOld
impl PartialEq for CcmDocApiOld
Source§fn eq(&self, other: &CcmDocApiOld) -> bool
fn eq(&self, other: &CcmDocApiOld) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CcmDocApiOld
Auto Trait Implementations§
impl Freeze for CcmDocApiOld
impl RefUnwindSafe for CcmDocApiOld
impl Send for CcmDocApiOld
impl Sync for CcmDocApiOld
impl Unpin for CcmDocApiOld
impl UnsafeUnpin for CcmDocApiOld
impl UnwindSafe for CcmDocApiOld
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