pub struct PeerRecord {
pub alias: String,
pub did: String,
pub proxy_url: String,
pub agent_name: Option<String>,
pub human_name: Option<String>,
pub created_at_ms: i64,
pub updated_at_ms: i64,
}Fields§
§alias: String§did: String§proxy_url: String§agent_name: Option<String>§human_name: Option<String>§created_at_ms: i64§updated_at_ms: i64Trait Implementations§
Source§impl Clone for PeerRecord
impl Clone for PeerRecord
Source§fn clone(&self) -> PeerRecord
fn clone(&self) -> PeerRecord
Returns a duplicate of the value. Read more
1.0.0 · 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 PeerRecord
impl Debug for PeerRecord
Source§impl PartialEq for PeerRecord
impl PartialEq for PeerRecord
impl Eq for PeerRecord
impl StructuralPartialEq for PeerRecord
Auto Trait Implementations§
impl Freeze for PeerRecord
impl RefUnwindSafe for PeerRecord
impl Send for PeerRecord
impl Sync for PeerRecord
impl Unpin for PeerRecord
impl UnsafeUnpin for PeerRecord
impl UnwindSafe for PeerRecord
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