pub enum SplitterError {
MaxSizeTooSmall {
max_size: usize,
min_required: usize,
},
MalformedFragmentHeader {
offset: usize,
},
MissingFragments {
total: u16,
received: usize,
},
InconsistentFragments,
EmptyPacket,
TooManyFragments(u16),
}Expand description
Errors that can occur during packet splitting or reassembly.
Variants§
MaxSizeTooSmall
The maximum packet size is too small to hold even the fragment header.
Fields
MalformedFragmentHeader
A fragment header is malformed (too short or invalid field values).
MissingFragments
One or more fragments are missing; reassembly cannot complete.
InconsistentFragments
Fragment indices are duplicated or inconsistent.
EmptyPacket
The input packet is empty.
TooManyFragments(u16)
The declared total fragment count exceeds a safety limit.
Trait Implementations§
Source§impl Clone for SplitterError
impl Clone for SplitterError
Source§fn clone(&self) -> SplitterError
fn clone(&self) -> SplitterError
Returns a duplicate 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 SplitterError
impl Debug for SplitterError
Source§impl Display for SplitterError
impl Display for SplitterError
Source§impl Error for SplitterError
impl Error for SplitterError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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 PartialEq for SplitterError
impl PartialEq for SplitterError
impl Eq for SplitterError
impl StructuralPartialEq for SplitterError
Auto Trait Implementations§
impl Freeze for SplitterError
impl RefUnwindSafe for SplitterError
impl Send for SplitterError
impl Sync for SplitterError
impl Unpin for SplitterError
impl UnsafeUnpin for SplitterError
impl UnwindSafe for SplitterError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more