Struct mz_metabase::LoginResponse
source · pub struct LoginResponse {
pub id: String,
}
Expand description
The response to Client::login
.
Fields§
§id: String
Trait Implementations§
source§impl Clone for LoginResponse
impl Clone for LoginResponse
source§fn clone(&self) -> LoginResponse
fn clone(&self) -> LoginResponse
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 LoginResponse
impl Debug for LoginResponse
source§impl<'de> Deserialize<'de> for LoginResponse
impl<'de> Deserialize<'de> for LoginResponse
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 PartialEq<LoginResponse> for LoginResponse
impl PartialEq<LoginResponse> for LoginResponse
source§fn eq(&self, other: &LoginResponse) -> bool
fn eq(&self, other: &LoginResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for LoginResponse
impl Serialize for LoginResponse
impl Eq for LoginResponse
impl StructuralEq for LoginResponse
impl StructuralPartialEq for LoginResponse
Auto Trait Implementations§
impl RefUnwindSafe for LoginResponse
impl Send for LoginResponse
impl Sync for LoginResponse
impl Unpin for LoginResponse
impl UnwindSafe for LoginResponse
Blanket Implementations§
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.