[−][src]Enum websocket_codec::protocol::DataLength
Describes the length of the payload data within an individual WebSocket frame.
Variants
Small(u8)
Holds the length of a payload of 125 bytes or shorter.
Medium(u16)
Holds the length of a payload between 126 and 65535 bytes.
Large(u64)
Holds the length of a payload between 65536 and 2^63 bytes.
Trait Implementations
impl Clone for DataLength
[src]
pub fn clone(&self) -> DataLength
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for DataLength
[src]
impl Debug for DataLength
[src]
impl From<u64> for DataLength
[src]
impl From<usize> for DataLength
[src]
impl PartialEq<DataLength> for DataLength
[src]
pub fn eq(&self, other: &DataLength) -> bool
[src]
pub fn ne(&self, other: &DataLength) -> bool
[src]
impl StructuralPartialEq for DataLength
[src]
impl TryFrom<DataLength> for u64
[src]
type Error = Error
The type returned in the event of a conversion error.
pub fn try_from(len: DataLength) -> Result<Self>
[src]
impl TryFrom<DataLength> for usize
[src]
Auto Trait Implementations
impl RefUnwindSafe for DataLength
[src]
impl Send for DataLength
[src]
impl Sync for DataLength
[src]
impl Unpin for DataLength
[src]
impl UnwindSafe for DataLength
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,