pub struct SubmissionResponseDataAttributes {
pub created_date: String,
pub name: String,
pub status: SubmissionResponseStatus,
}Expand description
Information about the status of a submission.
Fields§
§created_date: String§name: String§status: SubmissionResponseStatusTrait Implementations§
Source§impl Clone for SubmissionResponseDataAttributes
impl Clone for SubmissionResponseDataAttributes
Source§fn clone(&self) -> SubmissionResponseDataAttributes
fn clone(&self) -> SubmissionResponseDataAttributes
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<'de> Deserialize<'de> for SubmissionResponseDataAttributes
impl<'de> Deserialize<'de> for SubmissionResponseDataAttributes
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 SubmissionResponseDataAttributes
impl RefUnwindSafe for SubmissionResponseDataAttributes
impl Send for SubmissionResponseDataAttributes
impl Sync for SubmissionResponseDataAttributes
impl Unpin for SubmissionResponseDataAttributes
impl UnwindSafe for SubmissionResponseDataAttributes
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