pub struct CustomResult(pub Value);Expand description
A catch-all response either side can use for custom requests.
Tuple Fields§
§0: ValueImplementations§
Trait Implementations§
Source§impl Clone for CustomResult
impl Clone for CustomResult
Source§fn clone(&self) -> CustomResult
fn clone(&self) -> CustomResult
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 CustomResult
impl Debug for CustomResult
Source§impl<'de> Deserialize<'de> for CustomResult
impl<'de> Deserialize<'de> for CustomResult
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<CustomResult> for ClientResult
impl From<CustomResult> for ClientResult
Source§fn from(value: CustomResult) -> Self
fn from(value: CustomResult) -> Self
Converts to this type from the input type.
Source§impl From<CustomResult> for ServerResult
impl From<CustomResult> for ServerResult
Source§fn from(value: CustomResult) -> Self
fn from(value: CustomResult) -> Self
Converts to this type from the input type.
Source§impl JsonSchema for CustomResult
impl JsonSchema for CustomResult
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 moreSource§impl PartialEq for CustomResult
impl PartialEq for CustomResult
Source§impl Serialize for CustomResult
impl Serialize for CustomResult
impl StructuralPartialEq for CustomResult
Auto Trait Implementations§
impl Freeze for CustomResult
impl RefUnwindSafe for CustomResult
impl Send for CustomResult
impl Sync for CustomResult
impl Unpin for CustomResult
impl UnwindSafe for CustomResult
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