pub struct SlackSocketModeWssClientId {
pub initial_index: u32,
pub token_index: u32,
pub reconnected: u64,
}
Fields§
§initial_index: u32
§token_index: u32
§reconnected: u64
Implementations§
source§impl SlackSocketModeWssClientId
impl SlackSocketModeWssClientId
pub fn new(initial_index: u32, token_index: u32, reconnected: u64) -> Self
pub fn initial_index(&mut self, value: u32) -> &mut Self
pub fn with_initial_index(self, value: u32) -> Self
pub fn token_index(&mut self, value: u32) -> &mut Self
pub fn with_token_index(self, value: u32) -> Self
pub fn reconnected(&mut self, value: u64) -> &mut Self
pub fn with_reconnected(self, value: u64) -> Self
source§impl SlackSocketModeWssClientId
impl SlackSocketModeWssClientId
pub fn new_reconnected_id(&self) -> Self
Trait Implementations§
source§impl Clone for SlackSocketModeWssClientId
impl Clone for SlackSocketModeWssClientId
source§fn clone(&self) -> SlackSocketModeWssClientId
fn clone(&self) -> SlackSocketModeWssClientId
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 moresource§impl Debug for SlackSocketModeWssClientId
impl Debug for SlackSocketModeWssClientId
source§impl<'de> Deserialize<'de> for SlackSocketModeWssClientId
impl<'de> Deserialize<'de> for SlackSocketModeWssClientId
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<SlackSocketModeWssClientIdInit> for SlackSocketModeWssClientId
impl From<SlackSocketModeWssClientIdInit> for SlackSocketModeWssClientId
source§fn from(value: SlackSocketModeWssClientIdInit) -> Self
fn from(value: SlackSocketModeWssClientIdInit) -> Self
Converts to this type from the input type.
source§impl Hash for SlackSocketModeWssClientId
impl Hash for SlackSocketModeWssClientId
source§impl PartialEq for SlackSocketModeWssClientId
impl PartialEq for SlackSocketModeWssClientId
source§fn eq(&self, other: &SlackSocketModeWssClientId) -> bool
fn eq(&self, other: &SlackSocketModeWssClientId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for SlackSocketModeWssClientId
impl StructuralEq for SlackSocketModeWssClientId
impl StructuralPartialEq for SlackSocketModeWssClientId
Auto Trait Implementations§
impl RefUnwindSafe for SlackSocketModeWssClientId
impl Send for SlackSocketModeWssClientId
impl Sync for SlackSocketModeWssClientId
impl Unpin for SlackSocketModeWssClientId
impl UnwindSafe for SlackSocketModeWssClientId
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