pub struct StorageKey {
pub bot_id: i64,
pub chat_id: i64,
pub user_id: i64,
pub message_thread_id: Option<i64>,
pub business_connection_id: Option<String>,
pub destiny: &'static str,
}Expand description
Storage key is used to identify the state and data of the user in the storage
Fields§
§bot_id: i64§chat_id: i64§user_id: i64§message_thread_id: Option<i64>§business_connection_id: Option<String>§destiny: &'static strImplementations§
Trait Implementations§
Source§impl Clone for StorageKey
impl Clone for StorageKey
Source§fn clone(&self) -> StorageKey
fn clone(&self) -> StorageKey
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 StorageKey
impl Debug for StorageKey
impl Eq for StorageKey
Source§impl Hash for StorageKey
impl Hash for StorageKey
Source§impl PartialEq for StorageKey
impl PartialEq for StorageKey
impl StructuralPartialEq for StorageKey
Auto Trait Implementations§
impl Freeze for StorageKey
impl RefUnwindSafe for StorageKey
impl Send for StorageKey
impl Sync for StorageKey
impl Unpin for StorageKey
impl UnsafeUnpin for StorageKey
impl UnwindSafe for StorageKey
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