pub struct AsyncProcessingResponse {
pub request_id: Option<String>,
pub client_request_id: Option<String>,
}Fields§
§request_id: Option<String>A Gong request reference Id, generated for this request. Can be used for troubleshooting purposes.
client_request_id: Option<String>The clientRequestId sent in the request - used to monitor the request process
Implementations§
Source§impl AsyncProcessingResponse
impl AsyncProcessingResponse
pub fn new() -> AsyncProcessingResponse
Trait Implementations§
Source§impl Clone for AsyncProcessingResponse
impl Clone for AsyncProcessingResponse
Source§fn clone(&self) -> AsyncProcessingResponse
fn clone(&self) -> AsyncProcessingResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AsyncProcessingResponse
impl Debug for AsyncProcessingResponse
Source§impl Default for AsyncProcessingResponse
impl Default for AsyncProcessingResponse
Source§fn default() -> AsyncProcessingResponse
fn default() -> AsyncProcessingResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AsyncProcessingResponse
impl<'de> Deserialize<'de> for AsyncProcessingResponse
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 AsyncProcessingResponse
impl PartialEq for AsyncProcessingResponse
Source§fn eq(&self, other: &AsyncProcessingResponse) -> bool
fn eq(&self, other: &AsyncProcessingResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AsyncProcessingResponse
impl Serialize for AsyncProcessingResponse
impl StructuralPartialEq for AsyncProcessingResponse
Auto Trait Implementations§
impl Freeze for AsyncProcessingResponse
impl RefUnwindSafe for AsyncProcessingResponse
impl Send for AsyncProcessingResponse
impl Sync for AsyncProcessingResponse
impl Unpin for AsyncProcessingResponse
impl UnsafeUnpin for AsyncProcessingResponse
impl UnwindSafe for AsyncProcessingResponse
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