[−][src]Struct solicit::http::frame::data::DataFrame
A struct representing the DATA frames of HTTP/2, as defined in the HTTP/2 spec, section 6.1.
Fields
data: Vec<u8>
The data found in the frame as an opaque byte sequence. It never includes padding bytes.
Methods
impl DataFrame
[src]
impl DataFrame
pub fn new(stream_id: StreamId) -> DataFrame
[src]
pub fn new(stream_id: StreamId) -> DataFrame
Creates a new empty DataFrame
, associated to the stream with the
given ID.
pub fn is_padded(&self) -> bool
[src]
pub fn is_padded(&self) -> bool
Returns true
if the DATA frame is padded, otherwise false.
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, pad_len: u8)
[src]
pub fn set_padding(&mut self, pad_len: u8)
Sets the number of bytes that should be used as padding for this frame.
Trait Implementations
impl Frame for DataFrame
[src]
impl Frame for DataFrame
type FlagType = DataFlag
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
. Read more
fn from_raw(raw_frame: RawFrame) -> Option<DataFrame>
[src]
fn from_raw(raw_frame: RawFrame) -> Option<DataFrame>
Creates a new DataFrame
from the given RawFrame
(i.e. header and
payload), if possible. Returns None
if a valid DataFrame
cannot be
constructed from the given RawFrame
.
fn is_set(&self, flag: DataFlag) -> bool
[src]
fn is_set(&self, flag: DataFlag) -> bool
Tests if the given flag is set for the frame.
fn set_flag(&mut self, flag: DataFlag)
[src]
fn set_flag(&mut self, flag: DataFlag)
Sets the given flag 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.
fn get_header(&self) -> FrameHeader
[src]
fn get_header(&self) -> FrameHeader
Returns a FrameHeader
based on the current state of the frame.
fn serialize(&self) -> Vec<u8>
[src]
fn serialize(&self) -> Vec<u8>
Returns a Vec
with the serialized representation of the frame.
impl Clone for DataFrame
[src]
impl Clone for DataFrame
fn clone(&self) -> DataFrame
[src]
fn clone(&self) -> DataFrame
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<DataFrame> for DataFrame
[src]
impl PartialEq<DataFrame> for DataFrame
fn eq(&self, other: &DataFrame) -> bool
[src]
fn eq(&self, other: &DataFrame) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &DataFrame) -> bool
[src]
fn ne(&self, other: &DataFrame) -> bool
This method tests for !=
.
impl Debug for DataFrame
[src]
impl Debug for DataFrame
Auto Trait Implementations
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