Enum p2p::BindPublicError[]

pub enum BindPublicError {
    Bind(Error),
    OpenAddr(OpenAddrError),
}

Use this error to notify socket bind failure.

Variants

Failure to use OS bind() function.

Failure to open external port.

Trait Implementations

impl Debug for BindPublicError
[src]

Formats the value using the given formatter. Read more

impl Display for BindPublicError

Formats the value using the given formatter. Read more

impl Error for BindPublicError

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations