Enum sctp_proto::ConnectError [−][src]
pub enum ConnectError {
EndpointStopping,
TooManyAssociations,
InvalidDnsName(String),
InvalidRemoteAddress(SocketAddr),
NoDefaultClientConfig,
}
Expand description
Errors in the parameters being used to create a new association
These arise before any I/O has been performed.
Variants
EndpointStopping
The endpoint can no longer create new associations
Indicates that a necessary component of the endpoint has been dropped or otherwise disabled.
TooManyAssociations
The number of active associations on the local endpoint is at the limit
Try using longer association IDs.
InvalidDnsName(String)
Tuple Fields
0: String
The domain name supplied was malformed
InvalidRemoteAddress(SocketAddr)
Tuple Fields
0: SocketAddr
The remote SocketAddr
supplied was malformed
Examples include attempting to connect to port 0, or using an inappropriate address family.
NoDefaultClientConfig
No default client configuration was set up
Use Endpoint::connect_with
to specify a client configuration.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ConnectError
impl Send for ConnectError
impl Sync for ConnectError
impl Unpin for ConnectError
impl UnwindSafe for ConnectError
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more