pub struct FileInFolder {
pub token: String,
pub name: String,
pub type: String,
pub parent_token: String,
pub url: String,
pub shortcut_info: Option<ShortcutInfo>,
pub created_time: String,
pub modified_time: String,
pub owner_id: String,
}Expand description
文件夹清单列表
Fields§
§token: String文件标识
name: String文件名
type: String文件类型
可选值有:
-
doc:旧版文档
-
sheet:表格
-
mindnote:思维导图
-
bitable:多维表格
-
file:文件
-
docx:新版文档
-
folder:文件夹
-
shortcut: 快捷方式
parent_token: String父文件夹标识
url: String在浏览器中查看的链接
shortcut_info: Option<ShortcutInfo>快捷方式文件信息
created_time: String文件创建时间
modified_time: String文件最近修改时间
owner_id: String文件所有者
Trait Implementations§
source§impl Debug for FileInFolder
impl Debug for FileInFolder
source§impl<'de> Deserialize<'de> for FileInFolder
impl<'de> Deserialize<'de> for FileInFolder
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 FileInFolder
impl RefUnwindSafe for FileInFolder
impl Send for FileInFolder
impl Sync for FileInFolder
impl Unpin for FileInFolder
impl UnwindSafe for FileInFolder
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