pub struct UpdateConversationParams {
pub unread_count: Option<i32>,
pub starred: Option<bool>,
pub assigned_to: Option<String>,
pub status: Option<String>,
}Fields§
§unread_count: Option<i32>§starred: Option<bool>§assigned_to: Option<String>§status: Option<String>Trait Implementations§
Source§impl Clone for UpdateConversationParams
impl Clone for UpdateConversationParams
Source§fn clone(&self) -> UpdateConversationParams
fn clone(&self) -> UpdateConversationParams
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 UpdateConversationParams
impl Debug for UpdateConversationParams
Source§impl Default for UpdateConversationParams
impl Default for UpdateConversationParams
Source§fn default() -> UpdateConversationParams
fn default() -> UpdateConversationParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateConversationParams
impl<'de> Deserialize<'de> for UpdateConversationParams
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
Auto Trait Implementations§
impl Freeze for UpdateConversationParams
impl RefUnwindSafe for UpdateConversationParams
impl Send for UpdateConversationParams
impl Sync for UpdateConversationParams
impl Unpin for UpdateConversationParams
impl UnsafeUnpin for UpdateConversationParams
impl UnwindSafe for UpdateConversationParams
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