pub enum PayloadType {
Binary,
Text,
}Expand description
Stream payload type.
This enum specifies whether the WebSocketStream will send/receive Text or
Binary application data. It is used to construct frames when writing and
validated on frames read from the peer.
Variants§
Trait Implementations§
Source§impl Clone for PayloadType
impl Clone for PayloadType
Source§fn clone(&self) -> PayloadType
fn clone(&self) -> PayloadType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PayloadType
impl Debug for PayloadType
Source§impl From<PayloadType> for OpCode
impl From<PayloadType> for OpCode
Source§fn from(value: PayloadType) -> Self
fn from(value: PayloadType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PayloadType
impl PartialEq for PayloadType
impl Copy for PayloadType
impl Eq for PayloadType
impl StructuralPartialEq for PayloadType
Auto Trait Implementations§
impl Freeze for PayloadType
impl RefUnwindSafe for PayloadType
impl Send for PayloadType
impl Sync for PayloadType
impl Unpin for PayloadType
impl UnwindSafe for PayloadType
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