pub struct NodeAuthRequest {
pub hub_id: String,
pub token: String,
pub node_type: String,
pub node_id: String,
pub instance_id: String,
pub scope_id: Option<String>,
pub host_id: String,
pub host_name: Option<String>,
pub fingerprint: String,
}Fields§
§hub_id: String§token: String§node_type: String§node_id: String§instance_id: String§scope_id: Option<String>§host_id: String§host_name: Option<String>§fingerprint: StringTrait Implementations§
Source§impl Clone for NodeAuthRequest
impl Clone for NodeAuthRequest
Source§fn clone(&self) -> NodeAuthRequest
fn clone(&self) -> NodeAuthRequest
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 NodeAuthRequest
impl Debug for NodeAuthRequest
Source§impl<'de> Deserialize<'de> for NodeAuthRequest
impl<'de> Deserialize<'de> for NodeAuthRequest
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 NodeAuthRequest
impl RefUnwindSafe for NodeAuthRequest
impl Send for NodeAuthRequest
impl Sync for NodeAuthRequest
impl Unpin for NodeAuthRequest
impl UnsafeUnpin for NodeAuthRequest
impl UnwindSafe for NodeAuthRequest
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