pub struct AlertRaised {
pub alert: Alert,
pub deduplicated: bool,
}Fields§
§alert: Alert§deduplicated: booltrue when an alert with the same fingerprint was already active, so
notification sinks can stay quiet.
Trait Implementations§
Source§impl Clone for AlertRaised
impl Clone for AlertRaised
Source§fn clone(&self) -> AlertRaised
fn clone(&self) -> AlertRaised
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 AlertRaised
impl Debug for AlertRaised
Source§impl<'de> Deserialize<'de> for AlertRaised
impl<'de> Deserialize<'de> for AlertRaised
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 AlertRaised
impl RefUnwindSafe for AlertRaised
impl Send for AlertRaised
impl Sync for AlertRaised
impl Unpin for AlertRaised
impl UnsafeUnpin for AlertRaised
impl UnwindSafe for AlertRaised
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