[][src]Struct kompact::UniquePath

pub struct UniquePath { /* fields omitted */ }

Methods

impl UniquePath[src]

pub fn new(
    protocol: Transport,
    address: IpAddr,
    port: u16,
    id: Uuid
) -> UniquePath
[src]

pub fn with_system(system: SystemPath, id: Uuid) -> UniquePath[src]

pub fn with_socket(
    protocol: Transport,
    socket: SocketAddr,
    id: Uuid
) -> UniquePath
[src]

pub fn uuid_ref(&self) -> &Uuid[src]

pub fn clone_id(&self) -> Uuid[src]

Trait Implementations

impl Clone for UniquePath[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Eq for UniquePath[src]

impl PartialEq<UniquePath> for UniquePath[src]

impl Debug for UniquePath[src]

impl FromStr for UniquePath[src]

Attempts to parse a &str as a UniquePath.

type Err = PathParseError

The associated error which can be returned from parsing.

impl TryFrom<String> for UniquePath[src]

type Error = PathParseError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl Send for UniquePath

impl Sync for UniquePath

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

impl<T> Erased for T