pub struct SDKControlResponsePayload {
pub response_subtype: String,
pub request_id: String,
pub error: Option<String>,
pub response: Option<Value>,
}Fields§
§response_subtype: String§request_id: String§error: Option<String>§response: Option<Value>Trait Implementations§
Source§impl Clone for SDKControlResponsePayload
impl Clone for SDKControlResponsePayload
Source§fn clone(&self) -> SDKControlResponsePayload
fn clone(&self) -> SDKControlResponsePayload
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 Debug for SDKControlResponsePayload
impl Debug for SDKControlResponsePayload
Source§impl<'de> Deserialize<'de> for SDKControlResponsePayload
impl<'de> Deserialize<'de> for SDKControlResponsePayload
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 SDKControlResponsePayload
impl RefUnwindSafe for SDKControlResponsePayload
impl Send for SDKControlResponsePayload
impl Sync for SDKControlResponsePayload
impl Unpin for SDKControlResponsePayload
impl UnsafeUnpin for SDKControlResponsePayload
impl UnwindSafe for SDKControlResponsePayload
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