#[repr(u8)]pub enum Http2FrameType {
Data = 0,
Headers = 1,
Priority = 2,
RstStream = 3,
Settings = 4,
PushPromise = 5,
Ping = 6,
GoAway = 7,
WindowUpdate = 8,
Continuation = 9,
Unknown(u8),
}
Variants§
Data = 0
Headers = 1
Priority = 2
RstStream = 3
Settings = 4
PushPromise = 5
Ping = 6
GoAway = 7
WindowUpdate = 8
Continuation = 9
Unknown(u8)
Trait Implementations§
Source§impl Clone for Http2FrameType
impl Clone for Http2FrameType
Source§fn clone(&self) -> Http2FrameType
fn clone(&self) -> Http2FrameType
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 Http2FrameType
impl Debug for Http2FrameType
Source§impl From<u8> for Http2FrameType
impl From<u8> for Http2FrameType
Source§impl PartialEq for Http2FrameType
impl PartialEq for Http2FrameType
impl StructuralPartialEq for Http2FrameType
Auto Trait Implementations§
impl Freeze for Http2FrameType
impl RefUnwindSafe for Http2FrameType
impl Send for Http2FrameType
impl Sync for Http2FrameType
impl Unpin for Http2FrameType
impl UnwindSafe for Http2FrameType
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