pub struct ListEntry {
pub entry: String,
pub reason: Option<String>,
pub entry_type: EntryType,
pub organization_id: Option<String>,
pub read_only: bool,
pub created_at: Option<String>,
}Expand description
A single allow/block list entry.
Fields§
§entry: StringThe address or domain.
reason: Option<String>Free-text reason recorded with the entry.
entry_type: EntryTypeWhether the entry is an address or a domain.
organization_id: Option<String>The organization the entry belongs to.
read_only: boolWhether the entry is read-only (system-managed).
created_at: Option<String>Timestamp the entry was created (RFC 3339).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ListEntry
impl<'de> Deserialize<'de> for ListEntry
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 ListEntry
impl RefUnwindSafe for ListEntry
impl Send for ListEntry
impl Sync for ListEntry
impl Unpin for ListEntry
impl UnsafeUnpin for ListEntry
impl UnwindSafe for ListEntry
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