#[non_exhaustive]pub enum CIForwardedFrom {
Unknown,
Contact {
chat_name: String,
msg_dir: MsgDirection,
contact_id: Option<i64>,
chat_item_id: Option<i64>,
undocumented: HashMap<String, JsonObject>,
},
Group {
chat_name: String,
msg_dir: MsgDirection,
group_id: Option<i64>,
chat_item_id: Option<i64>,
undocumented: HashMap<String, JsonObject>,
},
Undocumented(JsonObject),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Unknown
Contact
Group
Undocumented(JsonObject)
Trait Implementations§
Source§impl Clone for CIForwardedFrom
impl Clone for CIForwardedFrom
Source§fn clone(&self) -> CIForwardedFrom
fn clone(&self) -> CIForwardedFrom
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 CIForwardedFrom
impl Debug for CIForwardedFrom
Source§impl<'de> Deserialize<'de> for CIForwardedFrom
impl<'de> Deserialize<'de> for CIForwardedFrom
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 CIForwardedFrom
impl PartialEq for CIForwardedFrom
Source§impl Serialize for CIForwardedFrom
impl Serialize for CIForwardedFrom
impl StructuralPartialEq for CIForwardedFrom
Auto Trait Implementations§
impl Freeze for CIForwardedFrom
impl RefUnwindSafe for CIForwardedFrom
impl Send for CIForwardedFrom
impl Sync for CIForwardedFrom
impl Unpin for CIForwardedFrom
impl UnwindSafe for CIForwardedFrom
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