pub struct RealtimeServerEventResponseDone {
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.done
.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RealtimeServerEventResponseDone
impl<'de> Deserialize<'de> for RealtimeServerEventResponseDone
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 RealtimeServerEventResponseDone
impl RefUnwindSafe for RealtimeServerEventResponseDone
impl Send for RealtimeServerEventResponseDone
impl Sync for RealtimeServerEventResponseDone
impl Unpin for RealtimeServerEventResponseDone
impl UnwindSafe for RealtimeServerEventResponseDone
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