pub struct RealtimeResponse_StatusDetails {
pub type: Option<String>,
pub reason: Option<String>,
pub error: Option<RealtimeResponse_StatusDetails_Error>,
}Expand description
Additional details about the status.
Fields§
§type: Option<String>The type of error that caused the response to fail, corresponding with
the status field (completed, cancelled, incomplete, failed).
reason: Option<String>The reason the Response did not complete.
error: Option<RealtimeResponse_StatusDetails_Error>Trait Implementations§
Source§impl Clone for RealtimeResponse_StatusDetails
impl Clone for RealtimeResponse_StatusDetails
Source§fn clone(&self) -> RealtimeResponse_StatusDetails
fn clone(&self) -> RealtimeResponse_StatusDetails
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 Default for RealtimeResponse_StatusDetails
impl Default for RealtimeResponse_StatusDetails
Source§fn default() -> RealtimeResponse_StatusDetails
fn default() -> RealtimeResponse_StatusDetails
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RealtimeResponse_StatusDetails
impl RefUnwindSafe for RealtimeResponse_StatusDetails
impl Send for RealtimeResponse_StatusDetails
impl Sync for RealtimeResponse_StatusDetails
impl Unpin for RealtimeResponse_StatusDetails
impl UnwindSafe for RealtimeResponse_StatusDetails
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