pub struct CheckUsernameAvailableResponse {
pub available: bool,
}
Fields§
§available: bool
Trait Implementations§
Source§impl Clone for CheckUsernameAvailableResponse
impl Clone for CheckUsernameAvailableResponse
Source§fn clone(&self) -> CheckUsernameAvailableResponse
fn clone(&self) -> CheckUsernameAvailableResponse
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<'de> Deserialize<'de> for CheckUsernameAvailableResponse
impl<'de> Deserialize<'de> for CheckUsernameAvailableResponse
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 FromResponse for CheckUsernameAvailableResponse
impl FromResponse for CheckUsernameAvailableResponse
type Response = CheckUsernameAvailableResponse
fn from_response(value: Self::Response) -> Self
Auto Trait Implementations§
impl Freeze for CheckUsernameAvailableResponse
impl RefUnwindSafe for CheckUsernameAvailableResponse
impl Send for CheckUsernameAvailableResponse
impl Sync for CheckUsernameAvailableResponse
impl Unpin for CheckUsernameAvailableResponse
impl UnwindSafe for CheckUsernameAvailableResponse
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