pub enum ChangeNotifications {
String(String),
Bool(bool),
}Variants§
Trait Implementations§
Source§impl Clone for ChangeNotifications
impl Clone for ChangeNotifications
Source§fn clone(&self) -> ChangeNotifications
fn clone(&self) -> ChangeNotifications
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 ChangeNotifications
impl Debug for ChangeNotifications
Source§impl<'de> Deserialize<'de> for ChangeNotifications
impl<'de> Deserialize<'de> for ChangeNotifications
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 From<&str> for ChangeNotifications
impl From<&str> for ChangeNotifications
Source§impl From<String> for ChangeNotifications
impl From<String> for ChangeNotifications
Source§impl From<bool> for ChangeNotifications
impl From<bool> for ChangeNotifications
Source§impl From<char> for ChangeNotifications
impl From<char> for ChangeNotifications
Source§impl Hash for ChangeNotifications
impl Hash for ChangeNotifications
Source§impl PartialEq for ChangeNotifications
impl PartialEq for ChangeNotifications
Source§fn eq(&self, other: &ChangeNotifications) -> bool
fn eq(&self, other: &ChangeNotifications) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ChangeNotifications
impl Serialize for ChangeNotifications
impl Eq for ChangeNotifications
impl StructuralPartialEq for ChangeNotifications
Auto Trait Implementations§
impl Freeze for ChangeNotifications
impl RefUnwindSafe for ChangeNotifications
impl Send for ChangeNotifications
impl Sync for ChangeNotifications
impl Unpin for ChangeNotifications
impl UnsafeUnpin for ChangeNotifications
impl UnwindSafe for ChangeNotifications
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