pub struct GetFileMetaRespData {
pub metas: Vec<FileMeta>,
}Expand description
获取文件元数据响应数据
Fields§
§metas: Vec<FileMeta>文件元数据列表
Trait Implementations§
Source§impl ApiResponseTrait for GetFileMetaRespData
impl ApiResponseTrait for GetFileMetaRespData
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 GetFileMetaRespData
impl Clone for GetFileMetaRespData
Source§fn clone(&self) -> GetFileMetaRespData
fn clone(&self) -> GetFileMetaRespData
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 GetFileMetaRespData
impl Debug for GetFileMetaRespData
Source§impl<'de> Deserialize<'de> for GetFileMetaRespData
impl<'de> Deserialize<'de> for GetFileMetaRespData
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
Source§impl PartialEq for GetFileMetaRespData
impl PartialEq for GetFileMetaRespData
Source§impl Serialize for GetFileMetaRespData
impl Serialize for GetFileMetaRespData
impl StructuralPartialEq for GetFileMetaRespData
Auto Trait Implementations§
impl Freeze for GetFileMetaRespData
impl RefUnwindSafe for GetFileMetaRespData
impl Send for GetFileMetaRespData
impl Sync for GetFileMetaRespData
impl Unpin for GetFileMetaRespData
impl UnwindSafe for GetFileMetaRespData
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