#[non_exhaustive]pub struct WatchlistUserPreferences {
pub pinned: bool,
/* private fields */
}Expand description
A collection of user preferences for watchlist UI configuration.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.pinned: boolOptional. Whether the watchlist is pinned on the dashboard.
Implementations§
Trait Implementations§
Source§impl Clone for WatchlistUserPreferences
impl Clone for WatchlistUserPreferences
Source§fn clone(&self) -> WatchlistUserPreferences
fn clone(&self) -> WatchlistUserPreferences
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 WatchlistUserPreferences
impl Debug for WatchlistUserPreferences
Source§impl Default for WatchlistUserPreferences
impl Default for WatchlistUserPreferences
Source§fn default() -> WatchlistUserPreferences
fn default() -> WatchlistUserPreferences
Returns the “default value” for a type. Read more
Source§impl Message for WatchlistUserPreferences
impl Message for WatchlistUserPreferences
Source§impl PartialEq for WatchlistUserPreferences
impl PartialEq for WatchlistUserPreferences
Source§fn eq(&self, other: &WatchlistUserPreferences) -> bool
fn eq(&self, other: &WatchlistUserPreferences) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WatchlistUserPreferences
Auto Trait Implementations§
impl Freeze for WatchlistUserPreferences
impl RefUnwindSafe for WatchlistUserPreferences
impl Send for WatchlistUserPreferences
impl Sync for WatchlistUserPreferences
impl Unpin for WatchlistUserPreferences
impl UnsafeUnpin for WatchlistUserPreferences
impl UnwindSafe for WatchlistUserPreferences
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