pub struct RealtimeServerEventResponseCreated {
pub event_id: String,
pub response: RealtimeResponse,
pub _type: String,
}
Fields§
§event_id: String
The unique ID of the server event.
response: RealtimeResponse
§_type: String
The event type, must be response.created
.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RealtimeServerEventResponseCreated
impl<'de> Deserialize<'de> for RealtimeServerEventResponseCreated
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 RealtimeServerEventResponseCreated
impl RefUnwindSafe for RealtimeServerEventResponseCreated
impl Send for RealtimeServerEventResponseCreated
impl Sync for RealtimeServerEventResponseCreated
impl Unpin for RealtimeServerEventResponseCreated
impl UnwindSafe for RealtimeServerEventResponseCreated
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