Struct golem_client::model::WhitelistEmail
source · pub struct WhitelistEmail {
pub email: String,
pub created_at: DateTime<Utc>,
pub created_by: String,
}
Fields§
§email: String
§created_at: DateTime<Utc>
§created_by: String
Trait Implementations§
source§impl Clone for WhitelistEmail
impl Clone for WhitelistEmail
source§fn clone(&self) -> WhitelistEmail
fn clone(&self) -> WhitelistEmail
Returns a copy of the value. Read more
1.0.0 · 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 WhitelistEmail
impl Debug for WhitelistEmail
source§impl<'de> Deserialize<'de> for WhitelistEmail
impl<'de> Deserialize<'de> for WhitelistEmail
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
source§impl Hash for WhitelistEmail
impl Hash for WhitelistEmail
source§impl Ord for WhitelistEmail
impl Ord for WhitelistEmail
source§fn cmp(&self, other: &WhitelistEmail) -> Ordering
fn cmp(&self, other: &WhitelistEmail) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<WhitelistEmail> for WhitelistEmail
impl PartialEq<WhitelistEmail> for WhitelistEmail
source§fn eq(&self, other: &WhitelistEmail) -> bool
fn eq(&self, other: &WhitelistEmail) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<WhitelistEmail> for WhitelistEmail
impl PartialOrd<WhitelistEmail> for WhitelistEmail
source§fn partial_cmp(&self, other: &WhitelistEmail) -> Option<Ordering>
fn partial_cmp(&self, other: &WhitelistEmail) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for WhitelistEmail
impl Serialize for WhitelistEmail
impl Eq for WhitelistEmail
impl StructuralEq for WhitelistEmail
impl StructuralPartialEq for WhitelistEmail
Auto Trait Implementations§
impl RefUnwindSafe for WhitelistEmail
impl Send for WhitelistEmail
impl Sync for WhitelistEmail
impl Unpin for WhitelistEmail
impl UnwindSafe for WhitelistEmail
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.