pub struct UserSettings {Show 14 fields
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub archived_at: Option<DateTime<Utc>>,
pub unsubscribed_from: Option<Vec<String>>,
pub calendar_hash: Option<String>,
pub subscribed_to_changelog: Option<bool>,
pub subscribed_to_dpa: Option<bool>,
pub subscribed_to_invite_accepted: Option<bool>,
pub subscribed_to_privacy_legal_updates: Option<bool>,
pub feed_summary_schedule: Option<FeedSummarySchedule>,
pub show_full_user_names: Option<bool>,
pub feed_last_seen_time: Option<DateTime<Utc>>,
pub auto_assign_to_self: Option<bool>,
}Fields§
§id: Option<String>§created_at: Option<DateTime<Utc>>§updated_at: Option<DateTime<Utc>>§archived_at: Option<DateTime<Utc>>§unsubscribed_from: Option<Vec<String>>§calendar_hash: Option<String>§subscribed_to_changelog: Option<bool>§subscribed_to_dpa: Option<bool>§subscribed_to_invite_accepted: Option<bool>§subscribed_to_privacy_legal_updates: Option<bool>§feed_summary_schedule: Option<FeedSummarySchedule>§show_full_user_names: Option<bool>§feed_last_seen_time: Option<DateTime<Utc>>§auto_assign_to_self: Option<bool>Trait Implementations§
Source§impl Clone for UserSettings
impl Clone for UserSettings
Source§fn clone(&self) -> UserSettings
fn clone(&self) -> UserSettings
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 UserSettings
impl Debug for UserSettings
Source§impl Default for UserSettings
impl Default for UserSettings
Source§fn default() -> UserSettings
fn default() -> UserSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserSettingswhere
UserSettings: Default,
impl<'de> Deserialize<'de> for UserSettingswhere
UserSettings: Default,
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 UserSettings
impl RefUnwindSafe for UserSettings
impl Send for UserSettings
impl Sync for UserSettings
impl Unpin for UserSettings
impl UnwindSafe for UserSettings
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