pub struct UploadSuccess {
pub internal_id: Option<u64>,
pub external_id: Option<String>,
pub messages: Vec<Value>,
}Expand description
Successful upload entry
Fields§
§internal_id: Option<u64>Created activity ID
external_id: Option<String>External ID
messages: Vec<Value>Messages
Trait Implementations§
Source§impl Clone for UploadSuccess
impl Clone for UploadSuccess
Source§fn clone(&self) -> UploadSuccess
fn clone(&self) -> UploadSuccess
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 UploadSuccess
impl Debug for UploadSuccess
Source§impl<'de> Deserialize<'de> for UploadSuccess
impl<'de> Deserialize<'de> for UploadSuccess
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 UploadSuccess
impl RefUnwindSafe for UploadSuccess
impl Send for UploadSuccess
impl Sync for UploadSuccess
impl Unpin for UploadSuccess
impl UnsafeUnpin for UploadSuccess
impl UnwindSafe for UploadSuccess
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