pub struct RealtimeServerEventError {
pub event_id: String,
pub type: String,
pub error: RealtimeServerEventError_Error,
}
Expand description
Returned when an error occurs, which could be a client problem or a server problem.
Fields§
§event_id: String
The unique ID of the server event.
type: String
The event type, must be error
.
error: RealtimeServerEventError_Error
Trait Implementations§
Source§impl Clone for RealtimeServerEventError
impl Clone for RealtimeServerEventError
Source§fn clone(&self) -> RealtimeServerEventError
fn clone(&self) -> RealtimeServerEventError
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 moreAuto Trait Implementations§
impl Freeze for RealtimeServerEventError
impl RefUnwindSafe for RealtimeServerEventError
impl Send for RealtimeServerEventError
impl Sync for RealtimeServerEventError
impl Unpin for RealtimeServerEventError
impl UnwindSafe for RealtimeServerEventError
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