pub struct DeviceBoundSessionFailedRequest {
pub requestUrl: String,
pub netError: Option<String>,
pub responseError: Option<i64>,
pub responseErrorBody: Option<String>,
}Expand description
Details about a failed device bound session network request.
Fields§
§requestUrl: StringThe failed request URL.
netError: Option<String>The net error of the response if it was not OK.
responseError: Option<i64>The response code if the net error was OK and the response code was not 200.
responseErrorBody: Option<String>The body of the response if the net error was OK, the response code was not 200, and the response body was not empty.
Trait Implementations§
Source§impl Clone for DeviceBoundSessionFailedRequest
impl Clone for DeviceBoundSessionFailedRequest
Source§fn clone(&self) -> DeviceBoundSessionFailedRequest
fn clone(&self) -> DeviceBoundSessionFailedRequest
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 DeviceBoundSessionFailedRequest
impl Default for DeviceBoundSessionFailedRequest
Source§fn default() -> DeviceBoundSessionFailedRequest
fn default() -> DeviceBoundSessionFailedRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeviceBoundSessionFailedRequest
impl<'de> Deserialize<'de> for DeviceBoundSessionFailedRequest
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 DeviceBoundSessionFailedRequest
impl RefUnwindSafe for DeviceBoundSessionFailedRequest
impl Send for DeviceBoundSessionFailedRequest
impl Sync for DeviceBoundSessionFailedRequest
impl Unpin for DeviceBoundSessionFailedRequest
impl UnsafeUnpin for DeviceBoundSessionFailedRequest
impl UnwindSafe for DeviceBoundSessionFailedRequest
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