pub struct ZBFileStatus {
pub success: bool,
pub file_id: String,
pub file_name: String,
pub file_status: String,
pub error_reason: Option<String>,
pub return_url: Option<String>,
pub upload_date: DateTime<FixedOffset>,
pub complete_percentage: f32,
}Fields§
§success: bool§file_id: String§file_name: String§file_status: String§error_reason: Option<String>§return_url: Option<String>§upload_date: DateTime<FixedOffset>§complete_percentage: f32Trait Implementations§
Source§impl Clone for ZBFileStatus
impl Clone for ZBFileStatus
Source§fn clone(&self) -> ZBFileStatus
fn clone(&self) -> ZBFileStatus
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 ZBFileStatus
impl Debug for ZBFileStatus
Source§impl<'de> Deserialize<'de> for ZBFileStatus
impl<'de> Deserialize<'de> for ZBFileStatus
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 ZBFileStatus
impl RefUnwindSafe for ZBFileStatus
impl Send for ZBFileStatus
impl Sync for ZBFileStatus
impl Unpin for ZBFileStatus
impl UnwindSafe for ZBFileStatus
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