Enum pipe_chain::pipe::Incomplete
source · pub enum Incomplete {
Unknown,
Size(usize),
}Expand description
Incomplete error
This error is returned when a pipe needs more input items
Variants§
Trait Implementations§
source§impl Clone for Incomplete
impl Clone for Incomplete
source§fn clone(&self) -> Incomplete
fn clone(&self) -> Incomplete
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 Incomplete
impl Debug for Incomplete
source§impl Display for Incomplete
impl Display for Incomplete
source§impl Error for Incomplete
impl Error for Incomplete
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<Incomplete> for Error
impl From<Incomplete> for Error
source§fn from(value: Incomplete) -> Self
fn from(value: Incomplete) -> Self
Converts to this type from the input type.
source§impl From<Incomplete> for FrameSizeError
impl From<Incomplete> for FrameSizeError
source§fn from(value: Incomplete) -> Self
fn from(value: Incomplete) -> Self
Converts to this type from the input type.
source§impl From<Incomplete> for PktLineError
impl From<Incomplete> for PktLineError
source§fn from(value: Incomplete) -> Self
fn from(value: Incomplete) -> Self
Converts to this type from the input type.
source§impl PartialEq for Incomplete
impl PartialEq for Incomplete
source§fn eq(&self, other: &Incomplete) -> bool
fn eq(&self, other: &Incomplete) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for Incomplete
impl Eq for Incomplete
impl StructuralEq for Incomplete
impl StructuralPartialEq for Incomplete
Auto Trait Implementations§
impl RefUnwindSafe for Incomplete
impl Send for Incomplete
impl Sync for Incomplete
impl Unpin for Incomplete
impl UnwindSafe for Incomplete
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