pub enum PrivacyMode {
DmOnly,
AllowGroups,
}Expand description
Whether the bridge accepts updates from groups in addition to direct
messages. Default = DmOnly.
Variants§
DmOnly
Only direct messages from chat_id are accepted; group updates are
dropped at the bridge edge.
AllowGroups
Group updates are accepted, but only from chat_id values listed in
allow_groups[] on the parent TelegramConfig.
Trait Implementations§
Source§impl Clone for PrivacyMode
impl Clone for PrivacyMode
Source§fn clone(&self) -> PrivacyMode
fn clone(&self) -> PrivacyMode
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 PrivacyMode
impl Debug for PrivacyMode
Source§impl Default for PrivacyMode
impl Default for PrivacyMode
Source§fn default() -> PrivacyMode
fn default() -> PrivacyMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PrivacyMode
impl<'de> Deserialize<'de> for PrivacyMode
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 PartialEq for PrivacyMode
impl PartialEq for PrivacyMode
Source§fn eq(&self, other: &PrivacyMode) -> bool
fn eq(&self, other: &PrivacyMode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PrivacyMode
impl Serialize for PrivacyMode
impl Eq for PrivacyMode
impl StructuralPartialEq for PrivacyMode
Auto Trait Implementations§
impl Freeze for PrivacyMode
impl RefUnwindSafe for PrivacyMode
impl Send for PrivacyMode
impl Sync for PrivacyMode
impl Unpin for PrivacyMode
impl UnsafeUnpin for PrivacyMode
impl UnwindSafe for PrivacyMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.