pub struct PeerId(/* private fields */);Expand description
Unique identifier for a peer in the sync network.
Peer IDs are ephemeral identifiers that identify a specific instance of a peer (e.g., a browser tab, a process). They are UTF-8 strings that are different from storage IDs which identify the underlying storage.
Implementations§
Source§impl PeerId
 
impl PeerId
Sourcepub fn new_with_rng<R: Rng>(rng: &mut R) -> Self
 
pub fn new_with_rng<R: Rng>(rng: &mut R) -> Self
Creates a new peer ID with a generated value using the provided RNG.
Sourcepub fn from_string(s: String) -> Self
 
pub fn from_string(s: String) -> Self
Creates a peer ID from a string.
Sourcepub fn into_string(self) -> String
 
pub fn into_string(self) -> String
Returns the peer ID as a String.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PeerId
 
impl<'de> Deserialize<'de> for PeerId
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
Source§impl Ord for PeerId
 
impl Ord for PeerId
Source§impl PartialOrd for PeerId
 
impl PartialOrd for PeerId
impl Eq for PeerId
impl StructuralPartialEq for PeerId
Auto Trait Implementations§
impl Freeze for PeerId
impl RefUnwindSafe for PeerId
impl Send for PeerId
impl Sync for PeerId
impl Unpin for PeerId
impl UnwindSafe for PeerId
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,
Source§impl<T> Instrument for T
 
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more