pub struct GetApisApiIdTasksTaskIdResponse {
pub created_at: Option<String>,
pub details: Option<Value>,
pub id: Option<String>,
pub meta: Option<GetApisApiIdTasksTaskIdResponseMeta>,
pub status: Option<GetApisApiIdTasksTaskIdResponseStatus>,
pub updated_at: Option<String>,
}
Fields§
§created_at: Option<String>
The date and time at which the task was created.
details: Option<Value>
§id: Option<String>
The task’s ID.
meta: Option<GetApisApiIdTasksTaskIdResponseMeta>
The response’s non-standard meta information.
status: Option<GetApisApiIdTasksTaskIdResponseStatus>
The task’s current status.
updated_at: Option<String>
The date and time at which the task was last updated.
Trait Implementations§
Source§impl Clone for GetApisApiIdTasksTaskIdResponse
impl Clone for GetApisApiIdTasksTaskIdResponse
Source§fn clone(&self) -> GetApisApiIdTasksTaskIdResponse
fn clone(&self) -> GetApisApiIdTasksTaskIdResponse
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 GetApisApiIdTasksTaskIdResponse
impl<'de> Deserialize<'de> for GetApisApiIdTasksTaskIdResponse
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
Source§impl PartialEq for GetApisApiIdTasksTaskIdResponse
impl PartialEq for GetApisApiIdTasksTaskIdResponse
Source§fn eq(&self, other: &GetApisApiIdTasksTaskIdResponse) -> bool
fn eq(&self, other: &GetApisApiIdTasksTaskIdResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetApisApiIdTasksTaskIdResponse
Auto Trait Implementations§
impl Freeze for GetApisApiIdTasksTaskIdResponse
impl RefUnwindSafe for GetApisApiIdTasksTaskIdResponse
impl Send for GetApisApiIdTasksTaskIdResponse
impl Sync for GetApisApiIdTasksTaskIdResponse
impl Unpin for GetApisApiIdTasksTaskIdResponse
impl UnwindSafe for GetApisApiIdTasksTaskIdResponse
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