#[non_exhaustive]pub struct RealtimeError {
pub type_: Option<String>,
pub code: Option<String>,
pub message: Option<String>,
pub param: Option<String>,
pub event_id: Option<String>,
pub extra: Extra,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.type_: Option<String>§code: Option<String>§message: Option<String>§param: Option<String>§event_id: Option<String>§extra: ExtraImplementations§
Source§impl RealtimeError
impl RealtimeError
Trait Implementations§
Source§impl Clone for RealtimeError
impl Clone for RealtimeError
Source§fn clone(&self) -> RealtimeError
fn clone(&self) -> RealtimeError
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 RealtimeError
impl Debug for RealtimeError
Source§impl<'de> Deserialize<'de> for RealtimeError
impl<'de> Deserialize<'de> for RealtimeError
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 PartialEq for RealtimeError
impl PartialEq for RealtimeError
Source§impl Serialize for RealtimeError
impl Serialize for RealtimeError
impl StructuralPartialEq for RealtimeError
Auto Trait Implementations§
impl Freeze for RealtimeError
impl RefUnwindSafe for RealtimeError
impl Send for RealtimeError
impl Sync for RealtimeError
impl Unpin for RealtimeError
impl UnsafeUnpin for RealtimeError
impl UnwindSafe for RealtimeError
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