pub struct ResultMeta {
pub server_info: Option<Implementation>,
}Expand description
Result meta (_meta) fields the server may attach to a response (SEP-2575).
Fields§
§server_info: Option<Implementation>Identifies the server software producing the response. Self-reported and unverified; intended for display, logging, and debugging.
Trait Implementations§
Source§impl Clone for ResultMeta
impl Clone for ResultMeta
Source§fn clone(&self) -> ResultMeta
fn clone(&self) -> ResultMeta
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 ResultMeta
impl Debug for ResultMeta
Source§impl Default for ResultMeta
impl Default for ResultMeta
Source§fn default() -> ResultMeta
fn default() -> ResultMeta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ResultMeta
impl<'de> Deserialize<'de> for ResultMeta
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ResultMeta, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ResultMeta, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ResultMeta
impl Serialize for ResultMeta
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for ResultMeta
impl RefUnwindSafe for ResultMeta
impl Send for ResultMeta
impl Sync for ResultMeta
impl Unpin for ResultMeta
impl UnsafeUnpin for ResultMeta
impl UnwindSafe for ResultMeta
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