pub struct ResolutionResponse {
pub actor: ResolutionResponseActor,
pub payload: JsonValue,
}Fields§
§actor: ResolutionResponseActor§payload: JsonValueShallow response payload. rust-resolution-payload-parity owns any
future deep typing for resolution responses.
Trait Implementations§
Source§impl Clone for ResolutionResponse
impl Clone for ResolutionResponse
Source§fn clone(&self) -> ResolutionResponse
fn clone(&self) -> ResolutionResponse
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 ResolutionResponse
impl Debug for ResolutionResponse
Source§impl<'de> Deserialize<'de> for ResolutionResponse
impl<'de> Deserialize<'de> for ResolutionResponse
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 ResolutionResponse
impl PartialEq for ResolutionResponse
Source§fn eq(&self, other: &ResolutionResponse) -> bool
fn eq(&self, other: &ResolutionResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl RunxSchema for ResolutionResponse
impl RunxSchema for ResolutionResponse
Source§fn json_schema() -> Value
fn json_schema() -> Value
The inlined JSON Schema for this type.
Source§impl Serialize for ResolutionResponse
impl Serialize for ResolutionResponse
impl StructuralPartialEq for ResolutionResponse
Auto Trait Implementations§
impl Freeze for ResolutionResponse
impl RefUnwindSafe for ResolutionResponse
impl Send for ResolutionResponse
impl Sync for ResolutionResponse
impl Unpin for ResolutionResponse
impl UnsafeUnpin for ResolutionResponse
impl UnwindSafe for ResolutionResponse
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