pub struct CustomRequest {
pub method: String,
pub params: Option<Value>,
pub extensions: Extensions,
}Expand description
A catch-all request either side can use to send custom messages to its peer.
This preserves the raw method name and params payload so handlers can
deserialize them into domain-specific types.
Fields§
§method: String§params: Option<Value>§extensions: Extensionsextensions will carry anything possible in the context, including Meta
this is similar with the Extensions in http crate
Implementations§
Trait Implementations§
Source§impl Clone for CustomRequest
impl Clone for CustomRequest
Source§fn clone(&self) -> CustomRequest
fn clone(&self) -> CustomRequest
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 CustomRequest
impl Debug for CustomRequest
Source§impl<'de> Deserialize<'de> for CustomRequest
impl<'de> Deserialize<'de> for CustomRequest
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 From<CustomRequest> for ClientRequest
impl From<CustomRequest> for ClientRequest
Source§fn from(value: CustomRequest) -> Self
fn from(value: CustomRequest) -> Self
Converts to this type from the input type.
Source§impl From<CustomRequest> for ServerRequest
impl From<CustomRequest> for ServerRequest
Source§fn from(value: CustomRequest) -> Self
fn from(value: CustomRequest) -> Self
Converts to this type from the input type.
Source§impl GetExtensions for CustomRequest
impl GetExtensions for CustomRequest
fn extensions(&self) -> &Extensions
fn extensions_mut(&mut self) -> &mut Extensions
Source§impl GetMeta for CustomRequest
impl GetMeta for CustomRequest
Source§impl JsonSchema for CustomRequest
impl JsonSchema for CustomRequest
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for CustomRequest
impl !RefUnwindSafe for CustomRequest
impl Send for CustomRequest
impl Sync for CustomRequest
impl Unpin for CustomRequest
impl !UnwindSafe for CustomRequest
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