pub struct SessionEndParams {
pub room_id: Option<String>,
pub meeting_id: Option<String>,
pub session_id: Option<String>,
pub force: Option<bool>,
pub ignore_closed: Option<bool>,
}Expand description
The parameters for SessionsResource::end.
Fields§
§room_id: Option<String>The room id. One of room_id or meeting_id is required.
meeting_id: Option<String>An alias for room_id.
session_id: Option<String>Restricts the action to a specific session.
force: Option<bool>Force-kills the session.
ignore_closed: Option<bool>Tolerates an already-closed session.
Trait Implementations§
Source§impl Clone for SessionEndParams
impl Clone for SessionEndParams
Source§fn clone(&self) -> SessionEndParams
fn clone(&self) -> SessionEndParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SessionEndParams
impl Debug for SessionEndParams
Source§impl Default for SessionEndParams
impl Default for SessionEndParams
Source§fn default() -> SessionEndParams
fn default() -> SessionEndParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SessionEndParams
impl RefUnwindSafe for SessionEndParams
impl Send for SessionEndParams
impl Sync for SessionEndParams
impl Unpin for SessionEndParams
impl UnsafeUnpin for SessionEndParams
impl UnwindSafe for SessionEndParams
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