pub struct InitLoginResponse {
pub ok: bool,
}Expand description
InitLoginResponse
JSON schema
{
"type": "object",
"required": [
"ok"
],
"properties": {
"ok": {
"type": "boolean"
}
}
}Fields§
§ok: boolImplementations§
Source§impl InitLoginResponse
impl InitLoginResponse
pub fn builder() -> InitLoginResponse
Trait Implementations§
Source§impl Clone for InitLoginResponse
impl Clone for InitLoginResponse
Source§fn clone(&self) -> InitLoginResponse
fn clone(&self) -> InitLoginResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InitLoginResponse
impl Debug for InitLoginResponse
Source§impl<'de> Deserialize<'de> for InitLoginResponse
impl<'de> Deserialize<'de> for InitLoginResponse
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 From<&InitLoginResponse> for InitLoginResponse
impl From<&InitLoginResponse> for InitLoginResponse
Source§fn from(value: &InitLoginResponse) -> Self
fn from(value: &InitLoginResponse) -> Self
Converts to this type from the input type.
Source§impl From<InitLoginResponse> for InitLoginResponse
impl From<InitLoginResponse> for InitLoginResponse
Source§fn from(value: InitLoginResponse) -> Self
fn from(value: InitLoginResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for InitLoginResponse
impl Serialize for InitLoginResponse
Source§impl TryFrom<InitLoginResponse> for InitLoginResponse
impl TryFrom<InitLoginResponse> for InitLoginResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: InitLoginResponse) -> Result<Self, ConversionError>
fn try_from(value: InitLoginResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for InitLoginResponse
impl RefUnwindSafe for InitLoginResponse
impl Send for InitLoginResponse
impl Sync for InitLoginResponse
impl Unpin for InitLoginResponse
impl UnsafeUnpin for InitLoginResponse
impl UnwindSafe for InitLoginResponse
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