[][src]Struct rusoto_sesv2::BlacklistEntry

pub struct BlacklistEntry {
    pub description: Option<String>,
    pub listing_time: Option<f64>,
    pub rbl_name: Option<String>,
}

An object that contains information about a blacklisting event that impacts one of the dedicated IP addresses that is associated with your account.

Fields

description: Option<String>

Additional information about the blacklisting event, as provided by the blacklist maintainer.

listing_time: Option<f64>

The time when the blacklisting event occurred, shown in Unix time format.

rbl_name: Option<String>

The name of the blacklist that the IP address appears on.

Trait Implementations

impl Clone for BlacklistEntry[src]

impl Debug for BlacklistEntry[src]

impl Default for BlacklistEntry[src]

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

impl PartialEq<BlacklistEntry> for BlacklistEntry[src]

impl StructuralPartialEq for BlacklistEntry[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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.