Enum quinn_proto::ConnectError
source · pub enum ConnectError {
EndpointStopping,
TooManyConnections,
InvalidDnsName(String),
InvalidRemoteAddress(SocketAddr),
NoDefaultClientConfig,
UnsupportedVersion,
}
Expand description
Errors in the parameters being used to create a new connection
These arise before any I/O has been performed.
Variants§
EndpointStopping
The endpoint can no longer create new connections
Indicates that a necessary component of the endpoint has been dropped or otherwise disabled.
TooManyConnections
The number of active connections on the local endpoint is at the limit
Try using longer connection IDs.
InvalidDnsName(String)
The domain name supplied was malformed
InvalidRemoteAddress(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.
UnsupportedVersion
The cryptographic layer does not support the specified QUIC version
Trait Implementations§
source§impl Clone for ConnectError
impl Clone for ConnectError
source§fn clone(&self) -> ConnectError
fn clone(&self) -> ConnectError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ConnectError
impl Debug for ConnectError
source§impl Display for ConnectError
impl Display for ConnectError
source§impl Error for ConnectError
impl Error for ConnectError
1.30.0 · source§fn 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 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<UnsupportedVersion> for ConnectError
impl From<UnsupportedVersion> for ConnectError
source§fn from(_: UnsupportedVersion) -> Self
fn from(_: UnsupportedVersion) -> Self
Converts to this type from the input type.
source§impl PartialEq for ConnectError
impl PartialEq for ConnectError
source§fn eq(&self, other: &ConnectError) -> bool
fn eq(&self, other: &ConnectError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ConnectError
impl StructuralEq for ConnectError
impl StructuralPartialEq for ConnectError
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§
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