[−][src]Struct solicit::http::frame::headers::HeadersFrame
A struct representing the HEADERS frames of HTTP/2, as defined in the HTTP/2 spec, section 6.2.
Fields
header_fragment: Vec<u8>
The header fragment bytes stored within the frame.
stream_id: StreamId
The ID of the stream with which this frame is associated
stream_dep: Option<StreamDependency>
The stream dependency information, if any.
padding_len: Option<u8>
The length of the padding, if any.
Methods
impl HeadersFrame
[src]
impl HeadersFrame
pub fn new(fragment: Vec<u8>, stream_id: StreamId) -> HeadersFrame
[src]
pub fn new(fragment: Vec<u8>, stream_id: StreamId) -> HeadersFrame
Creates a new HeadersFrame
with the given header fragment and stream
ID. No padding, no stream dependency, and no flags are set.
pub fn with_dependency(
fragment: Vec<u8>,
stream_id: StreamId,
stream_dep: StreamDependency
) -> HeadersFrame
[src]
pub fn with_dependency(
fragment: Vec<u8>,
stream_id: StreamId,
stream_dep: StreamDependency
) -> HeadersFrame
Creates a new HeadersFrame
with the given header fragment, stream ID
and stream dependency information. No padding and no flags are set.
pub fn is_headers_end(&self) -> bool
[src]
pub fn is_headers_end(&self) -> bool
Returns whether this frame ends the headers. If not, there MUST be a number of follow up CONTINUATION frames that send the rest of the header data.
pub fn is_end_of_stream(&self) -> bool
[src]
pub fn is_end_of_stream(&self) -> bool
Returns whther this frame ends the stream it is associated with.
pub fn set_padding(&mut self, padding_len: u8)
[src]
pub fn set_padding(&mut self, padding_len: u8)
Sets the padding length for the frame, as well as the corresponding Padded flag.
Trait Implementations
impl Frame for HeadersFrame
[src]
impl Frame for HeadersFrame
type FlagType = HeadersFlag
The type that represents the flags that the particular Frame
can take.
This makes sure that only valid Flag
s are used with each Frame
.
fn from_raw(raw_frame: RawFrame) -> Option<HeadersFrame>
[src]
fn from_raw(raw_frame: RawFrame) -> Option<HeadersFrame>
Creates a new HeadersFrame
with the given RawFrame
(i.e. header and
payload), if possible.
Returns
None
if a valid HeadersFrame
cannot be constructed from the given
RawFrame
. The stream ID must not be 0.
Otherwise, returns a newly constructed HeadersFrame
.
fn is_set(&self, flag: HeadersFlag) -> bool
[src]
fn is_set(&self, flag: HeadersFlag) -> bool
Tests if the given flag is set for the frame.
fn get_stream_id(&self) -> StreamId
[src]
fn get_stream_id(&self) -> StreamId
Returns the StreamId
of the stream to which the frame is associated.
A SettingsFrame
always has to be associated to stream 0
.
fn get_header(&self) -> FrameHeader
[src]
fn get_header(&self) -> FrameHeader
Returns a FrameHeader
based on the current state of the Frame
.
fn set_flag(&mut self, flag: HeadersFlag)
[src]
fn set_flag(&mut self, flag: HeadersFlag)
Sets the given flag for the frame.
fn serialize(&self) -> Vec<u8>
[src]
fn serialize(&self) -> Vec<u8>
Returns a Vec
with the serialized representation of the frame.
Panics
If the HeadersFlag::Priority
flag was set, but no stream dependency
information is given (i.e. stream_dep
is None
).
impl Clone for HeadersFrame
[src]
impl Clone for HeadersFrame
fn clone(&self) -> HeadersFrame
[src]
fn clone(&self) -> HeadersFrame
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl PartialEq<HeadersFrame> for HeadersFrame
[src]
impl PartialEq<HeadersFrame> for HeadersFrame
fn eq(&self, other: &HeadersFrame) -> bool
[src]
fn eq(&self, other: &HeadersFrame) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &HeadersFrame) -> bool
[src]
fn ne(&self, other: &HeadersFrame) -> bool
This method tests for !=
.
impl Debug for HeadersFrame
[src]
impl Debug for HeadersFrame
Auto Trait Implementations
impl Send for HeadersFrame
impl Send for HeadersFrame
impl Sync for HeadersFrame
impl Sync for HeadersFrame
Blanket Implementations
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
type Owned = T
fn to_owned(&self) -> T
[src]
fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)
[src]
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more