pub struct ProxyCallResponse {
pub result: Value,
pub error: Option<String>,
}Expand description
Response payload from the proxy server.
Fields§
§result: Value§error: Option<String>Trait Implementations§
Source§impl Debug for ProxyCallResponse
impl Debug for ProxyCallResponse
Source§impl<'de> Deserialize<'de> for ProxyCallResponse
impl<'de> Deserialize<'de> for ProxyCallResponse
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 ProxyCallResponse
impl RefUnwindSafe for ProxyCallResponse
impl Send for ProxyCallResponse
impl Sync for ProxyCallResponse
impl Unpin for ProxyCallResponse
impl UnsafeUnpin for ProxyCallResponse
impl UnwindSafe for ProxyCallResponse
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