pub struct TkaSignInfo {
pub node_id: i64,
pub node_public: NodePublicKey,
pub rotation_pubkey: Vec<u8>,
}Expand description
One entry in TkaInitBeginResponse::need_signatures (Go tailcfg.TKASignInfo): a node control
needs a fresh network-lock signature for before the lock can be finalized.
Fields§
§node_id: i64The node’s stable id (Go NodeID, an int64) — a plain JSON number here (it is a field, not
a map key).
node_public: NodePublicKeyThe node’s public key (nodekey:+hex).
rotation_pubkey: Vec<u8>The node’s rotation public key — raw ed25519 public-key bytes (Go []byte), base64 on the
wire. Empty/absent when the node has none.
Trait Implementations§
Source§impl Clone for TkaSignInfo
impl Clone for TkaSignInfo
Source§fn clone(&self) -> TkaSignInfo
fn clone(&self) -> TkaSignInfo
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 TkaSignInfo
impl Debug for TkaSignInfo
Source§impl<'de> Deserialize<'de> for TkaSignInfo
impl<'de> Deserialize<'de> for TkaSignInfo
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TkaSignInfo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TkaSignInfo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TkaSignInfo
Source§impl PartialEq for TkaSignInfo
impl PartialEq for TkaSignInfo
Source§fn eq(&self, other: &TkaSignInfo) -> bool
fn eq(&self, other: &TkaSignInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TkaSignInfo
impl Serialize for TkaSignInfo
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for TkaSignInfo
Auto Trait Implementations§
impl Freeze for TkaSignInfo
impl RefUnwindSafe for TkaSignInfo
impl Send for TkaSignInfo
impl Sync for TkaSignInfo
impl Unpin for TkaSignInfo
impl UnsafeUnpin for TkaSignInfo
impl UnwindSafe for TkaSignInfo
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.