pub struct RealtimeServerEventErrorError {
pub code: Option<String>,
pub event_id: Option<String>,
pub message: String,
pub param: Option<String>,
pub _type: String,
}
Fields§
§code: Option<String>
Error code, if any.
event_id: Option<String>
The event_id of the client event that caused the error, if applicable.
message: String
A human-readable error message.
param: Option<String>
Parameter related to the error, if any.
_type: String
The type of error (e.g., "invalid_request_error", "server_error").
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RealtimeServerEventErrorError
impl<'de> Deserialize<'de> for RealtimeServerEventErrorError
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
Auto Trait Implementations§
impl Freeze for RealtimeServerEventErrorError
impl RefUnwindSafe for RealtimeServerEventErrorError
impl Send for RealtimeServerEventErrorError
impl Sync for RealtimeServerEventErrorError
impl Unpin for RealtimeServerEventErrorError
impl UnwindSafe for RealtimeServerEventErrorError
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