pub enum CcmDriveExplorerApiOld {
RootFolderMeta,
FolderMeta(String),
File(String),
FileSpreadsheets(String),
FileCopy(String),
FileDocs(String),
FolderChildren(String),
Folder(String),
}Expand description
CCM Drive Explorer API Old V2 端点枚举 对应 meta.project = ccm_drive_explorer, meta.version = old
Variants§
RootFolderMeta
获取我的空间(根文件夹)元数据
FolderMeta(String)
获取文件夹元数据
File(String)
新建文件
FileSpreadsheets(String)
删除Sheet
FileCopy(String)
复制文档
FileDocs(String)
删除Doc
FolderChildren(String)
获取文件夹下的文档清单
Folder(String)
新建文件夹
Implementations§
Trait Implementations§
Source§impl Clone for CcmDriveExplorerApiOld
impl Clone for CcmDriveExplorerApiOld
Source§fn clone(&self) -> CcmDriveExplorerApiOld
fn clone(&self) -> CcmDriveExplorerApiOld
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 CcmDriveExplorerApiOld
impl Debug for CcmDriveExplorerApiOld
Source§impl PartialEq for CcmDriveExplorerApiOld
impl PartialEq for CcmDriveExplorerApiOld
Source§fn eq(&self, other: &CcmDriveExplorerApiOld) -> bool
fn eq(&self, other: &CcmDriveExplorerApiOld) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CcmDriveExplorerApiOld
Auto Trait Implementations§
impl Freeze for CcmDriveExplorerApiOld
impl RefUnwindSafe for CcmDriveExplorerApiOld
impl Send for CcmDriveExplorerApiOld
impl Sync for CcmDriveExplorerApiOld
impl Unpin for CcmDriveExplorerApiOld
impl UnsafeUnpin for CcmDriveExplorerApiOld
impl UnwindSafe for CcmDriveExplorerApiOld
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