[][src]Struct ckb_jsonrpc_types::AlertMessage

pub struct AlertMessage {
    pub id: AlertId,
    pub priority: AlertPriority,
    pub notice_until: Timestamp,
    pub message: String,
}

An alert sent by RPC send_alert.

Fields

id: AlertId

The unique alert ID.

priority: AlertPriority

Alerts are sorted by priority, highest first.

notice_until: Timestamp

The alert is expired after this timestamp.

message: String

Alert message.

Trait Implementations

impl Clone for AlertMessage[src]

impl Debug for AlertMessage[src]

impl Default for AlertMessage[src]

impl<'de> Deserialize<'de> for AlertMessage[src]

impl Eq for AlertMessage[src]

impl From<Alert> for AlertMessage[src]

impl Hash for AlertMessage[src]

impl PartialEq<AlertMessage> for AlertMessage[src]

impl Serialize for AlertMessage[src]

impl StructuralEq for AlertMessage[src]

impl StructuralPartialEq for AlertMessage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.