pub enum ConversationType {
NoAnswersAllowed,
PrivateAnswersOnly,
GroupOnly,
OpenChat,
}Variants§
NoAnswersAllowed
No answers
PrivateAnswersOnly
Answers only to sender
GroupOnly
Answers to everyone
OpenChat
Private messages among themselves possible
Implementations§
Source§impl ConversationType
impl ConversationType
Sourcepub fn to_lanis_string(&self) -> String
pub fn to_lanis_string(&self) -> String
Converts the enum to a String format that lanis expects
Trait Implementations§
Source§impl Clone for ConversationType
impl Clone for ConversationType
Source§fn clone(&self) -> ConversationType
fn clone(&self) -> ConversationType
Returns a duplicate 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 ConversationType
impl Debug for ConversationType
Source§impl<'de> Deserialize<'de> for ConversationType
impl<'de> Deserialize<'de> for ConversationType
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 Display for ConversationType
impl Display for ConversationType
Source§impl Hash for ConversationType
impl Hash for ConversationType
Source§impl Ord for ConversationType
impl Ord for ConversationType
Source§fn cmp(&self, other: &ConversationType) -> Ordering
fn cmp(&self, other: &ConversationType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ConversationType
impl PartialEq for ConversationType
Source§impl PartialOrd for ConversationType
impl PartialOrd for ConversationType
Source§impl Serialize for ConversationType
impl Serialize for ConversationType
impl Eq for ConversationType
impl StructuralPartialEq for ConversationType
Auto Trait Implementations§
impl Freeze for ConversationType
impl RefUnwindSafe for ConversationType
impl Send for ConversationType
impl Sync for ConversationType
impl Unpin for ConversationType
impl UnwindSafe for ConversationType
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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.