pub struct FileDeleteOutput {
pub request_id: String,
pub code: Option<String>,
pub message: Option<String>,
}Expand description
文件删除输出
Fields§
§request_id: String请求ID
code: Option<String>错误代码(可选,仅在失败时存在)
message: Option<String>错误消息(可选,仅在失败时存在)
Trait Implementations§
Source§impl Clone for FileDeleteOutput
impl Clone for FileDeleteOutput
Source§fn clone(&self) -> FileDeleteOutput
fn clone(&self) -> FileDeleteOutput
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 FileDeleteOutput
impl Debug for FileDeleteOutput
Source§impl<'de> Deserialize<'de> for FileDeleteOutput
impl<'de> Deserialize<'de> for FileDeleteOutput
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 FileDeleteOutput
impl RefUnwindSafe for FileDeleteOutput
impl Send for FileDeleteOutput
impl Sync for FileDeleteOutput
impl Unpin for FileDeleteOutput
impl UnwindSafe for FileDeleteOutput
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