pub struct CreateListEntry {
pub entry: String,
pub reason: Option<String>,
}Expand description
Request body for create_list_entry.
Fields§
§entry: StringThe address or domain to add.
reason: Option<String>An optional reason to record with the entry.
Trait Implementations§
Source§impl Clone for CreateListEntry
impl Clone for CreateListEntry
Source§fn clone(&self) -> CreateListEntry
fn clone(&self) -> CreateListEntry
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 CreateListEntry
impl Debug for CreateListEntry
Source§impl Default for CreateListEntry
impl Default for CreateListEntry
Source§fn default() -> CreateListEntry
fn default() -> CreateListEntry
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CreateListEntry
impl RefUnwindSafe for CreateListEntry
impl Send for CreateListEntry
impl Sync for CreateListEntry
impl Unpin for CreateListEntry
impl UnsafeUnpin for CreateListEntry
impl UnwindSafe for CreateListEntry
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