pub struct GetFolderMetaRespData {
pub token: String,
pub id: String,
pub name: String,
pub parent_token: Option<String>,
pub owner_id: String,
pub creator_id: Option<String>,
pub create_time: String,
pub edit_time: String,
pub description: Option<String>,
pub url: String,
}Expand description
获取文件夹元数据响应数据
Fields§
§token: String文件夹token
id: String文件夹ID
name: String文件夹名称
parent_token: Option<String>父文件夹token
owner_id: String拥有者ID
creator_id: Option<String>创建者ID
create_time: String创建时间
edit_time: String修改时间
description: Option<String>文件夹描述
url: String文件夹链接
Trait Implementations§
Source§impl ApiResponseTrait for GetFolderMetaRespData
impl ApiResponseTrait for GetFolderMetaRespData
Source§fn data_format() -> ResponseFormat
fn data_format() -> ResponseFormat
是否是标准数据格式, 既是用data包裹数据
fn from_binary(_file_name: String, _body: Vec<u8>) -> Option<Self>
Source§impl Clone for GetFolderMetaRespData
impl Clone for GetFolderMetaRespData
Source§fn clone(&self) -> GetFolderMetaRespData
fn clone(&self) -> GetFolderMetaRespData
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetFolderMetaRespData
impl Debug for GetFolderMetaRespData
Source§impl<'de> Deserialize<'de> for GetFolderMetaRespData
impl<'de> Deserialize<'de> for GetFolderMetaRespData
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 GetFolderMetaRespData
impl RefUnwindSafe for GetFolderMetaRespData
impl Send for GetFolderMetaRespData
impl Sync for GetFolderMetaRespData
impl Unpin for GetFolderMetaRespData
impl UnwindSafe for GetFolderMetaRespData
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