pub struct GetAvatarGravatarParams {
pub email_query: Option<String>,
pub hash_query: Option<String>,
pub s_query: Option<String>,
pub d_query: Option<String>,
pub r_query: Option<String>,
}Fields§
§email_query: Option<String>§hash_query: Option<String>§s_query: Option<String>§d_query: Option<String>§r_query: Option<String>Implementations§
Source§impl GetAvatarGravatarParams
impl GetAvatarGravatarParams
pub fn new() -> Self
pub fn email_query(self, value: impl Into<String>) -> Self
pub fn hash_query(self, value: impl Into<String>) -> Self
pub fn s_query(self, value: impl Into<String>) -> Self
pub fn d_query(self, value: impl Into<String>) -> Self
pub fn r_query(self, value: impl Into<String>) -> Self
Trait Implementations§
Source§impl Clone for GetAvatarGravatarParams
impl Clone for GetAvatarGravatarParams
Source§fn clone(&self) -> GetAvatarGravatarParams
fn clone(&self) -> GetAvatarGravatarParams
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 GetAvatarGravatarParams
impl RefUnwindSafe for GetAvatarGravatarParams
impl Send for GetAvatarGravatarParams
impl Sync for GetAvatarGravatarParams
impl Unpin for GetAvatarGravatarParams
impl UnwindSafe for GetAvatarGravatarParams
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