Enum quicr_core::WriteError [−][src]
pub enum WriteError { Blocked, Stopped { error_code: u16, }, }
Variants
Blocked
The peer is not able to accept additional data, or the connection is congested.
Stopped
The peer is no longer accepting data on this stream.
Fields of Stopped
error_code: u16 |
Trait Implementations
impl Debug for WriteError
[src]
impl Debug for WriteError
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Fail for WriteError
[src]
impl Fail for WriteError
fn cause(&self) -> Option<&Fail>
[src]
fn cause(&self) -> Option<&Fail>
Returns a reference to the underlying cause of this failure, if it is an error that wraps other errors. Read more
fn backtrace(&self) -> Option<&Backtrace>
[src]
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the Backtrace
carried by this failure, if it carries one. Read more
fn context<D>(self, context: D) -> Context<D> where
D: Display + Send + Sync + 'static,
[src]
fn context<D>(self, context: D) -> Context<D> where
D: Display + Send + Sync + 'static,
Provides context for this failure. Read more
fn compat(self) -> Compat<Self>
[src]
fn compat(self) -> Compat<Self>
Wraps this failure in a compatibility wrapper that implements std::error::Error
. Read more
ⓘImportant traits for Causes<'f>fn causes(&self) -> Causes
[src]
fn causes(&self) -> Causes
Returns a iterator over the causes of this Fail
with itself as the first item and the root_cause
as the final item. Read more
fn root_cause(&self) -> &(Fail + 'static)
[src]
fn root_cause(&self) -> &(Fail + 'static)
Returns the "root cause" of this Fail
- the last value in the cause chain which does not return an underlying cause
. Read more
impl Display for WriteError
[src]
impl Display for WriteError
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Clone for WriteError
[src]
impl Clone for WriteError
fn clone(&self) -> WriteError
[src]
fn clone(&self) -> WriteError
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Eq for WriteError
[src]
impl Eq for WriteError
impl PartialEq for WriteError
[src]
impl PartialEq for WriteError
fn eq(&self, other: &WriteError) -> bool
[src]
fn eq(&self, other: &WriteError) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &WriteError) -> bool
[src]
fn ne(&self, other: &WriteError) -> bool
This method tests for !=
.
impl Ord for WriteError
[src]
impl Ord for WriteError
fn cmp(&self, other: &WriteError) -> Ordering
[src]
fn cmp(&self, other: &WriteError) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl PartialOrd for WriteError
[src]
impl PartialOrd for WriteError
fn partial_cmp(&self, other: &WriteError) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &WriteError) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &WriteError) -> bool
[src]
fn lt(&self, other: &WriteError) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &WriteError) -> bool
[src]
fn le(&self, other: &WriteError) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &WriteError) -> bool
[src]
fn gt(&self, other: &WriteError) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &WriteError) -> bool
[src]
fn ge(&self, other: &WriteError) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Hash for WriteError
[src]
impl Hash for WriteError
Auto Trait Implementations
impl Send for WriteError
impl Send for WriteError
impl Sync for WriteError
impl Sync for WriteError