Struct quinn_proto::Written
source · pub struct Written {
pub bytes: usize,
pub chunks: usize,
}
Expand description
Indicates how many bytes and chunks had been transferred in a write operation
Fields§
§bytes: usize
The amount of bytes which had been written
chunks: usize
The amount of full chunks which had been written
If a chunk was only partially written, it will not be counted by this field.
Trait Implementations§
source§impl PartialEq for Written
impl PartialEq for Written
impl Copy for Written
impl Eq for Written
impl StructuralEq for Written
impl StructuralPartialEq for Written
Auto Trait Implementations§
impl RefUnwindSafe for Written
impl Send for Written
impl Sync for Written
impl Unpin for Written
impl UnwindSafe for Written
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