pub struct FileRetrieveOutput {
pub request_id: String,
pub data: FileInfo,
}Expand description
单个文件信息输出
Fields§
§request_id: String请求ID
data: FileInfo文件信息
Trait Implementations§
Source§impl Clone for FileRetrieveOutput
impl Clone for FileRetrieveOutput
Source§fn clone(&self) -> FileRetrieveOutput
fn clone(&self) -> FileRetrieveOutput
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 FileRetrieveOutput
impl Debug for FileRetrieveOutput
Source§impl<'de> Deserialize<'de> for FileRetrieveOutput
impl<'de> Deserialize<'de> for FileRetrieveOutput
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 FileRetrieveOutput
impl RefUnwindSafe for FileRetrieveOutput
impl Send for FileRetrieveOutput
impl Sync for FileRetrieveOutput
impl Unpin for FileRetrieveOutput
impl UnwindSafe for FileRetrieveOutput
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