pub struct NodeAuthResponse {
pub ok: bool,
pub session_id: Option<String>,
pub hub_id: Option<String>,
pub tenant_id: Option<String>,
pub scope_id: Option<String>,
pub error: Option<String>,
pub error_code: Option<String>,
pub recovery_action: Option<String>,
pub node_id: Option<String>,
}Fields§
§ok: bool§session_id: Option<String>§hub_id: Option<String>§tenant_id: Option<String>§scope_id: Option<String>§error: Option<String>§error_code: Option<String>§recovery_action: Option<String>§node_id: Option<String>Trait Implementations§
Source§impl Clone for NodeAuthResponse
impl Clone for NodeAuthResponse
Source§fn clone(&self) -> NodeAuthResponse
fn clone(&self) -> NodeAuthResponse
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 NodeAuthResponse
impl Debug for NodeAuthResponse
Source§impl<'de> Deserialize<'de> for NodeAuthResponse
impl<'de> Deserialize<'de> for NodeAuthResponse
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
Auto Trait Implementations§
impl Freeze for NodeAuthResponse
impl RefUnwindSafe for NodeAuthResponse
impl Send for NodeAuthResponse
impl Sync for NodeAuthResponse
impl Unpin for NodeAuthResponse
impl UnsafeUnpin for NodeAuthResponse
impl UnwindSafe for NodeAuthResponse
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