pub struct EmailClientConfig {
pub smtp_host: String,
pub smtp_port: u16,
pub smtp_username: String,
pub smtp_password: String,
}
Fields§
§smtp_host: String
§smtp_port: u16
§smtp_username: String
§smtp_password: String
Trait Implementations§
Source§impl Clone for EmailClientConfig
impl Clone for EmailClientConfig
Source§fn clone(&self) -> EmailClientConfig
fn clone(&self) -> EmailClientConfig
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for EmailClientConfig
impl RefUnwindSafe for EmailClientConfig
impl Send for EmailClientConfig
impl Sync for EmailClientConfig
impl Unpin for EmailClientConfig
impl UnwindSafe for EmailClientConfig
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