pub struct ResponseErrorEvent {
pub sequence_number: u64,
pub code: Option<String>,
pub message: String,
pub param: Option<String>,
}Fields§
§sequence_number: u64§code: Option<String>§message: String§param: Option<String>Trait Implementations§
Source§impl Clone for ResponseErrorEvent
impl Clone for ResponseErrorEvent
Source§fn clone(&self) -> ResponseErrorEvent
fn clone(&self) -> ResponseErrorEvent
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 ResponseErrorEvent
impl Debug for ResponseErrorEvent
Source§impl<'de> Deserialize<'de> for ResponseErrorEvent
impl<'de> Deserialize<'de> for ResponseErrorEvent
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ResponseErrorEvent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ResponseErrorEvent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ResponseErrorEvent
impl PartialEq for ResponseErrorEvent
Source§impl Serialize for ResponseErrorEvent
impl Serialize for ResponseErrorEvent
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
impl StructuralPartialEq for ResponseErrorEvent
Auto Trait Implementations§
impl Freeze for ResponseErrorEvent
impl RefUnwindSafe for ResponseErrorEvent
impl Send for ResponseErrorEvent
impl Sync for ResponseErrorEvent
impl Unpin for ResponseErrorEvent
impl UnsafeUnpin for ResponseErrorEvent
impl UnwindSafe for ResponseErrorEvent
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