pub struct CloseSessionRequest {
pub request_header: RequestHeader,
pub delete_subscriptions: bool,
}Expand description
CloseSessionRequest.
Fields§
§request_header: RequestHeaderCommon request header.
delete_subscriptions: boolWhether to delete the session’s subscriptions.
Trait Implementations§
Source§impl Clone for CloseSessionRequest
impl Clone for CloseSessionRequest
Source§fn clone(&self) -> CloseSessionRequest
fn clone(&self) -> CloseSessionRequest
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 CloseSessionRequest
impl Debug for CloseSessionRequest
Source§impl PartialEq for CloseSessionRequest
impl PartialEq for CloseSessionRequest
Source§fn eq(&self, other: &CloseSessionRequest) -> bool
fn eq(&self, other: &CloseSessionRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CloseSessionRequest
Auto Trait Implementations§
impl Freeze for CloseSessionRequest
impl RefUnwindSafe for CloseSessionRequest
impl Send for CloseSessionRequest
impl Sync for CloseSessionRequest
impl Unpin for CloseSessionRequest
impl UnsafeUnpin for CloseSessionRequest
impl UnwindSafe for CloseSessionRequest
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