pub struct Identity {
pub key_blob: Vec<u8>,
pub comment: String,
}Expand description
One advertised identity (a public-key blob + comment) for the answer.
Fields§
§key_blob: Vec<u8>The public-key blob.
comment: StringA human comment (e.g. the coordinate). Public metadata, never a secret.
Auto Trait Implementations§
impl Freeze for Identity
impl RefUnwindSafe for Identity
impl Send for Identity
impl Sync for Identity
impl Unpin for Identity
impl UnsafeUnpin for Identity
impl UnwindSafe for Identity
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