pub struct RealtimeServerEventSessionUpdated {
pub event_id: String,
pub type: String,
pub session: RealtimeSession,
}
Expand description
Returned when a session is updated with a session.update
event, unless
there is an error.
Fields§
§event_id: String
The unique ID of the server event.
type: String
The event type, must be session.updated
.
session: RealtimeSession
Trait Implementations§
Source§impl Clone for RealtimeServerEventSessionUpdated
impl Clone for RealtimeServerEventSessionUpdated
Source§fn clone(&self) -> RealtimeServerEventSessionUpdated
fn clone(&self) -> RealtimeServerEventSessionUpdated
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 RealtimeServerEventSessionUpdated
impl RefUnwindSafe for RealtimeServerEventSessionUpdated
impl Send for RealtimeServerEventSessionUpdated
impl Sync for RealtimeServerEventSessionUpdated
impl Unpin for RealtimeServerEventSessionUpdated
impl UnwindSafe for RealtimeServerEventSessionUpdated
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