pub struct EndOfFrame {
pub shortfall: usize,
}Expand description
Error from FramedRead::read: the frame ran out before the request could
be satisfied. shortfall is how many more bytes were requested than the
frame still holds; on this error the reader is left unadvanced.
Fields§
§shortfall: usizeTrait Implementations§
Source§impl Clone for EndOfFrame
impl Clone for EndOfFrame
Source§fn clone(&self) -> EndOfFrame
fn clone(&self) -> EndOfFrame
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 EndOfFrame
impl Debug for EndOfFrame
Source§impl PartialEq for EndOfFrame
impl PartialEq for EndOfFrame
impl Copy for EndOfFrame
impl Eq for EndOfFrame
impl StructuralPartialEq for EndOfFrame
Auto Trait Implementations§
impl Freeze for EndOfFrame
impl RefUnwindSafe for EndOfFrame
impl Send for EndOfFrame
impl Sync for EndOfFrame
impl Unpin for EndOfFrame
impl UnwindSafe for EndOfFrame
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.