pub struct NwcResponsePayload {
pub result_type: NwcMethod,
pub result: Option<Value>,
pub error: Option<NwcError>,
}Expand description
NWC response payload (to be encrypted).
Fields§
§result_type: NwcMethod§result: Option<Value>§error: Option<NwcError>Trait Implementations§
Source§impl Clone for NwcResponsePayload
impl Clone for NwcResponsePayload
Source§fn clone(&self) -> NwcResponsePayload
fn clone(&self) -> NwcResponsePayload
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 NwcResponsePayload
impl Debug for NwcResponsePayload
Source§impl<'de> Deserialize<'de> for NwcResponsePayload
impl<'de> Deserialize<'de> for NwcResponsePayload
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<NwcResponsePayload, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<NwcResponsePayload, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for NwcResponsePayload
impl PartialEq for NwcResponsePayload
Source§impl Serialize for NwcResponsePayload
impl Serialize for NwcResponsePayload
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for NwcResponsePayload
Auto Trait Implementations§
impl Freeze for NwcResponsePayload
impl RefUnwindSafe for NwcResponsePayload
impl Send for NwcResponsePayload
impl Sync for NwcResponsePayload
impl Unpin for NwcResponsePayload
impl UnsafeUnpin for NwcResponsePayload
impl UnwindSafe for NwcResponsePayload
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