pub struct GetRootFolderMetaRespData {
pub token: String,
pub user_id: String,
}Expand description
获取我的空间(root folder)元数据响应数据
Fields§
§token: String用户空间的根目录 token
user_id: String用户 ID
Trait Implementations§
Source§impl ApiResponseTrait for GetRootFolderMetaRespData
impl ApiResponseTrait for GetRootFolderMetaRespData
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 GetRootFolderMetaRespData
impl Clone for GetRootFolderMetaRespData
Source§fn clone(&self) -> GetRootFolderMetaRespData
fn clone(&self) -> GetRootFolderMetaRespData
Returns a duplicate of the value. Read more
1.0.0 · 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 GetRootFolderMetaRespData
impl Debug for GetRootFolderMetaRespData
Source§impl<'de> Deserialize<'de> for GetRootFolderMetaRespData
impl<'de> Deserialize<'de> for GetRootFolderMetaRespData
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 GetRootFolderMetaRespData
impl RefUnwindSafe for GetRootFolderMetaRespData
impl Send for GetRootFolderMetaRespData
impl Sync for GetRootFolderMetaRespData
impl Unpin for GetRootFolderMetaRespData
impl UnwindSafe for GetRootFolderMetaRespData
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