Trait webrtc_sctp::util::serial::SerialNumber[][src]

pub trait SerialNumber: Copy + Debug + Display + Hash + LowerHex + UpperHex + Ord + PartialOrd + Add<Output = Self> + Sub<Output = Self> + AddAssign + SubAssign {
    const THRESHOLD: Self;

    fn wrapping_add(self, rhs: Self) -> Self;
fn wrapping_sub(self, rhs: Self) -> Self;
fn next(self) -> Self;
fn previous(self) -> Self; }

Associated Constants

Required Methods

Implementations on Foreign Types

impl SerialNumber for u32
[src]

impl SerialNumber for u16
[src]

Implementors