pub enum CcmDriveExplorerApi {
RootFolderMeta,
FolderMeta(String),
File(String),
FileCopy(String),
FileDocs(String),
FileSpreadsheets(String),
FolderChildren(String),
Folder,
}Expand description
CCM Drive Explorer API V1 端点枚举 对应 meta.project = ccm_drive_explorer, meta.version = v1
Variants§
RootFolderMeta
获取根目录元数据
FolderMeta(String)
获取文件夹元数据
File(String)
获取文件元数据
FileCopy(String)
复制文件
FileDocs(String)
获取文档文件信息
FileSpreadsheets(String)
获取表格文件信息
FolderChildren(String)
获取文件夹子内容
Folder
创建文件夹
Implementations§
Trait Implementations§
Source§impl Clone for CcmDriveExplorerApi
impl Clone for CcmDriveExplorerApi
Source§fn clone(&self) -> CcmDriveExplorerApi
fn clone(&self) -> CcmDriveExplorerApi
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 CcmDriveExplorerApi
impl Debug for CcmDriveExplorerApi
Source§impl PartialEq for CcmDriveExplorerApi
impl PartialEq for CcmDriveExplorerApi
Source§fn eq(&self, other: &CcmDriveExplorerApi) -> bool
fn eq(&self, other: &CcmDriveExplorerApi) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CcmDriveExplorerApi
Auto Trait Implementations§
impl Freeze for CcmDriveExplorerApi
impl RefUnwindSafe for CcmDriveExplorerApi
impl Send for CcmDriveExplorerApi
impl Sync for CcmDriveExplorerApi
impl Unpin for CcmDriveExplorerApi
impl UnsafeUnpin for CcmDriveExplorerApi
impl UnwindSafe for CcmDriveExplorerApi
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