pub struct OtherRequest {}Trait Implementations§
Source§impl Clone for OtherRequest
impl Clone for OtherRequest
Source§fn clone(&self) -> OtherRequest
fn clone(&self) -> OtherRequest
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 OtherRequest
impl Debug for OtherRequest
Source§impl<'de> Deserialize<'de> for OtherRequest
impl<'de> Deserialize<'de> for OtherRequest
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 JsonRpcMessage for OtherRequest
impl JsonRpcMessage for OtherRequest
Source§fn matches_method(method: &str) -> bool
fn matches_method(method: &str) -> bool
Check if this message type matches the given method name.
Source§fn to_untyped_message(&self) -> Result<UntypedMessage, Error>
fn to_untyped_message(&self) -> Result<UntypedMessage, Error>
Convert this message into an untyped message.
Source§impl JsonRpcRequest for OtherRequest
impl JsonRpcRequest for OtherRequest
Source§type Response = OtherResponse
type Response = OtherResponse
The type of data expected in response.
Auto Trait Implementations§
impl Freeze for OtherRequest
impl RefUnwindSafe for OtherRequest
impl Send for OtherRequest
impl Sync for OtherRequest
impl Unpin for OtherRequest
impl UnsafeUnpin for OtherRequest
impl UnwindSafe for OtherRequest
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