pub struct TkaSyncOfferResponse {
pub head: String,
pub ancestors: Vec<String>,
pub missing_aums: Vec<Vec<u8>>,
}Expand description
Response to GET /machine/tka/sync/offer (Go tailcfg.TKASyncOfferResponse): control’s own
offer (its head + ancestors) plus the AUMs it computed the node is missing.
Fields§
§head: StringControl’s current chain head (base32 no-pad).
ancestors: Vec<String>Control’s ancestor sample (base32 no-pad each).
missing_aums: Vec<Vec<u8>>The AUMs the node is missing — each raw CBOR bytes, base64 on the wire (Go
[]tkatype.MarshaledAUM). Empty/absent when the node is already up to date.
Trait Implementations§
Source§impl Clone for TkaSyncOfferResponse
impl Clone for TkaSyncOfferResponse
Source§fn clone(&self) -> TkaSyncOfferResponse
fn clone(&self) -> TkaSyncOfferResponse
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 TkaSyncOfferResponse
impl Debug for TkaSyncOfferResponse
Source§impl Default for TkaSyncOfferResponse
impl Default for TkaSyncOfferResponse
Source§fn default() -> TkaSyncOfferResponse
fn default() -> TkaSyncOfferResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TkaSyncOfferResponse
impl<'de> Deserialize<'de> for TkaSyncOfferResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TkaSyncOfferResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TkaSyncOfferResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TkaSyncOfferResponse
Source§impl PartialEq for TkaSyncOfferResponse
impl PartialEq for TkaSyncOfferResponse
Source§fn eq(&self, other: &TkaSyncOfferResponse) -> bool
fn eq(&self, other: &TkaSyncOfferResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TkaSyncOfferResponse
impl Serialize for TkaSyncOfferResponse
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 TkaSyncOfferResponse
Auto Trait Implementations§
impl Freeze for TkaSyncOfferResponse
impl RefUnwindSafe for TkaSyncOfferResponse
impl Send for TkaSyncOfferResponse
impl Sync for TkaSyncOfferResponse
impl Unpin for TkaSyncOfferResponse
impl UnsafeUnpin for TkaSyncOfferResponse
impl UnwindSafe for TkaSyncOfferResponse
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.