pub struct SessionLogoutParams {
pub id: Option<String>,
}Expand description
Request parameters for the [session_logout] operation.
This struct holds all of the inputs you can pass when calling
session_logout.
Fields§
§id: Option<String>Unique WebSocket request ID.
This field is **optional.
Implementations§
Source§impl SessionLogoutParams
impl SessionLogoutParams
Sourcepub fn builder() -> SessionLogoutParamsBuilder
pub fn builder() -> SessionLogoutParamsBuilder
Create a builder for [session_logout].
Trait Implementations§
Source§impl Clone for SessionLogoutParams
impl Clone for SessionLogoutParams
Source§fn clone(&self) -> SessionLogoutParams
fn clone(&self) -> SessionLogoutParams
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 SessionLogoutParams
impl Debug for SessionLogoutParams
Source§impl Default for SessionLogoutParams
impl Default for SessionLogoutParams
Source§fn default() -> SessionLogoutParams
fn default() -> SessionLogoutParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SessionLogoutParams
impl RefUnwindSafe for SessionLogoutParams
impl Send for SessionLogoutParams
impl Sync for SessionLogoutParams
impl Unpin for SessionLogoutParams
impl UnsafeUnpin for SessionLogoutParams
impl UnwindSafe for SessionLogoutParams
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