pub struct ServiceEndpointRequestResult {
pub callback_context_parameters: Option<Value>,
pub callback_required: Option<bool>,
pub error_message: Option<String>,
pub result: Option<JToken>,
pub status_code: Option<StatusCode>,
}Expand description
Represents result of the service endpoint request.
Fields§
§callback_context_parameters: Option<Value>Gets or sets the parameters used to make subsequent calls to the data source
callback_required: Option<bool>Gets or sets the flat that decides if another call to the data source is to be made
error_message: Option<String>Gets or sets the error message of the service endpoint request result.
result: Option<JToken>Represents an abstract JSON token.
status_code: Option<StatusCode>Gets or sets the status code of the service endpoint request result.
Implementations§
Trait Implementations§
Source§impl Clone for ServiceEndpointRequestResult
impl Clone for ServiceEndpointRequestResult
Source§fn clone(&self) -> ServiceEndpointRequestResult
fn clone(&self) -> ServiceEndpointRequestResult
Returns a copy 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 ServiceEndpointRequestResult
impl Debug for ServiceEndpointRequestResult
Source§impl Default for ServiceEndpointRequestResult
impl Default for ServiceEndpointRequestResult
Source§fn default() -> ServiceEndpointRequestResult
fn default() -> ServiceEndpointRequestResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceEndpointRequestResult
impl<'de> Deserialize<'de> for ServiceEndpointRequestResult
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 ServiceEndpointRequestResult
impl PartialEq for ServiceEndpointRequestResult
Source§fn eq(&self, other: &ServiceEndpointRequestResult) -> bool
fn eq(&self, other: &ServiceEndpointRequestResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ServiceEndpointRequestResult
Auto Trait Implementations§
impl Freeze for ServiceEndpointRequestResult
impl RefUnwindSafe for ServiceEndpointRequestResult
impl Send for ServiceEndpointRequestResult
impl Sync for ServiceEndpointRequestResult
impl Unpin for ServiceEndpointRequestResult
impl UnwindSafe for ServiceEndpointRequestResult
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