pub struct LoginResult { /* private fields */ }Expand description
Result of a successful login, returned to JavaScript.
Implementations§
Trait Implementations§
Source§impl From<LoginResult> for JsValue
impl From<LoginResult> for JsValue
Source§fn from(value: LoginResult) -> Self
fn from(value: LoginResult) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for LoginResult
impl FromWasmAbi for LoginResult
Source§impl IntoWasmAbi for LoginResult
impl IntoWasmAbi for LoginResult
Source§impl LongRefFromWasmAbi for LoginResult
impl LongRefFromWasmAbi for LoginResult
Source§impl OptionFromWasmAbi for LoginResult
impl OptionFromWasmAbi for LoginResult
Source§impl OptionIntoWasmAbi for LoginResult
impl OptionIntoWasmAbi for LoginResult
Source§impl RefFromWasmAbi for LoginResult
impl RefFromWasmAbi for LoginResult
Source§type Anchor = RcRef<LoginResult>
type Anchor = RcRef<LoginResult>
The type that holds the reference to
Self for the duration of the
invocation of the function that has an &Self parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.Source§impl RefMutFromWasmAbi for LoginResult
impl RefMutFromWasmAbi for LoginResult
Source§impl TryFromJsValue for LoginResult
impl TryFromJsValue for LoginResult
Source§impl VectorFromWasmAbi for LoginResult
impl VectorFromWasmAbi for LoginResult
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[LoginResult]>
Source§impl VectorIntoWasmAbi for LoginResult
impl VectorIntoWasmAbi for LoginResult
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[LoginResult]>) -> Self::Abi
Source§impl WasmDescribeVector for LoginResult
impl WasmDescribeVector for LoginResult
impl SupportsConstructor for LoginResult
impl SupportsInstanceProperty for LoginResult
impl SupportsStaticProperty for LoginResult
Auto Trait Implementations§
impl Freeze for LoginResult
impl RefUnwindSafe for LoginResult
impl Send for LoginResult
impl Sync for LoginResult
impl Unpin for LoginResult
impl UnsafeUnpin for LoginResult
impl UnwindSafe for LoginResult
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
Source§impl<T> GetSetFdFlags for T
impl<T> GetSetFdFlags for T
Source§fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
Query the “status” flags for the
self file descriptor.Source§fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where
T: AsFilelike,
fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where
T: AsFilelike,
Source§fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>where
T: AsFilelike,
fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>where
T: AsFilelike,
Set the “status” flags for the
self file descriptor. Read moreSource§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::RequestSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::AbiSource§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err.