Enum sctp_proto::AssociateError
source · [−]pub enum AssociateError {
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)
The domain name supplied was malformed
InvalidRemoteAddress(SocketAddr)
The remote SocketAddr
supplied was malformed
Examples include attempting to associate to port 0, or using an inappropriate address family.
NoDefaultClientConfig
No default client configuration was set up
Use Endpoint::associate_with
to specify a client configuration.
Trait Implementations
sourceimpl Clone for AssociateError
impl Clone for AssociateError
sourcefn clone(&self) -> AssociateError
fn clone(&self) -> AssociateError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AssociateError
impl Debug for AssociateError
sourceimpl Display for AssociateError
impl Display for AssociateError
sourceimpl Error for AssociateError
impl Error for AssociateError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourceimpl PartialEq<AssociateError> for AssociateError
impl PartialEq<AssociateError> for AssociateError
sourcefn eq(&self, other: &AssociateError) -> bool
fn eq(&self, other: &AssociateError) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl Eq for AssociateError
impl StructuralEq for AssociateError
impl StructuralPartialEq for AssociateError
Auto Trait Implementations
impl RefUnwindSafe for AssociateError
impl Send for AssociateError
impl Sync for AssociateError
impl Unpin for AssociateError
impl UnwindSafe for AssociateError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more