#[repr(u8)]pub enum RawFrameType {
Data = 0,
Headers = 1,
Priority = 2,
RstStream = 3,
Settings = 4,
PushPromise = 5,
Ping = 6,
GoAway = 7,
WindowUpdate = 8,
Continuation = 9,
}
Expand description
See https://httpwg.org/specs/rfc9113.html#FrameTypes
Variants§
Data = 0
Headers = 1
Priority = 2
RstStream = 3
Settings = 4
PushPromise = 5
Ping = 6
GoAway = 7
WindowUpdate = 8
Continuation = 9
Implementations§
Trait Implementations§
Source§impl Clone for RawFrameType
impl Clone for RawFrameType
Source§fn clone(&self) -> RawFrameType
fn clone(&self) -> RawFrameType
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 RawFrameType
impl Debug for RawFrameType
impl Copy for RawFrameType
Auto Trait Implementations§
impl Freeze for RawFrameType
impl RefUnwindSafe for RawFrameType
impl Send for RawFrameType
impl Sync for RawFrameType
impl Unpin for RawFrameType
impl UnwindSafe for RawFrameType
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