pub struct RealtimeClientEventSessionUpdate {
pub event_id: Option<String>,
pub type: String,
pub session: RealtimeSessionCreateRequest,
}
Expand description
Send this event to update the session’s default configuration.
Fields§
§event_id: Option<String>
Optional client-generated ID used to identify this event.
type: String
The event type, must be session.update
.
session: RealtimeSessionCreateRequest
Trait Implementations§
Source§impl Clone for RealtimeClientEventSessionUpdate
impl Clone for RealtimeClientEventSessionUpdate
Source§fn clone(&self) -> RealtimeClientEventSessionUpdate
fn clone(&self) -> RealtimeClientEventSessionUpdate
Returns a copy 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 RealtimeClientEventSessionUpdate
impl RefUnwindSafe for RealtimeClientEventSessionUpdate
impl Send for RealtimeClientEventSessionUpdate
impl Sync for RealtimeClientEventSessionUpdate
impl Unpin for RealtimeClientEventSessionUpdate
impl UnwindSafe for RealtimeClientEventSessionUpdate
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