wtx 0.43.0

A collection of different transport implementations and related tools focused primarily on web technologies.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use core::ops::Range;

/// A block that composes `BlocksDeque`.
#[derive(Debug, PartialEq)]
pub struct Block<D, M> {
  /// Opaque data
  pub data: D,
  /// Miscellaneous
  pub misc: M,
  /// Range
  pub range: Range<usize>,
}