pub struct SizeHint { /* private fields */ }
Expand description
A Body
size hint
The default implementation returns:
- 0 for
lower
None
forupper
.
Implementations
sourceimpl SizeHint
impl SizeHint
sourcepub fn with_exact(value: u64) -> SizeHint
pub fn with_exact(value: u64) -> SizeHint
Returns a new SizeHint
with both upper and lower bounds set to the
given value.
sourcepub fn lower(&self) -> u64
pub fn lower(&self) -> u64
Returns the lower bound of data that the Body
will yield before
completing.
sourcepub fn upper(&self) -> Option<u64>
pub fn upper(&self) -> Option<u64>
Returns the upper bound of data the Body
will yield before
completing, or None
if the value is unknown.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for SizeHint
impl Send for SizeHint
impl Sync for SizeHint
impl Unpin for SizeHint
impl UnwindSafe for SizeHint
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more