pub struct AuthenticateResult {}Expand description
Result of the authenticate command.
An empty object on success. If the token is invalid or the resource is
unrecognized, the server MUST return a JSON-RPC error (e.g. AuthRequired
-32007 or InvalidParams -32602).
Trait Implementations§
Source§impl Clone for AuthenticateResult
impl Clone for AuthenticateResult
Source§fn clone(&self) -> AuthenticateResult
fn clone(&self) -> AuthenticateResult
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 AuthenticateResult
impl Debug for AuthenticateResult
Source§impl<'de> Deserialize<'de> for AuthenticateResult
impl<'de> Deserialize<'de> for AuthenticateResult
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 for AuthenticateResult
impl PartialEq for AuthenticateResult
Source§fn eq(&self, other: &AuthenticateResult) -> bool
fn eq(&self, other: &AuthenticateResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AuthenticateResult
impl Serialize for AuthenticateResult
impl StructuralPartialEq for AuthenticateResult
Auto Trait Implementations§
impl Freeze for AuthenticateResult
impl RefUnwindSafe for AuthenticateResult
impl Send for AuthenticateResult
impl Sync for AuthenticateResult
impl Unpin for AuthenticateResult
impl UnsafeUnpin for AuthenticateResult
impl UnwindSafe for AuthenticateResult
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