[−][src]Struct solicit::http::frame::rst_stream::RstStreamFrame
The struct represents the RST_STREAM
HTTP/2 frame.
Implementations
impl RstStreamFrame
[src]
pub fn new(stream_id: StreamId, error_code: ErrorCode) -> RstStreamFrame
[src]
Constructs a new RstStreamFrame
with the given ErrorCode
.
pub fn with_raw_error_code(
stream_id: StreamId,
raw_error_code: u32
) -> RstStreamFrame
[src]
stream_id: StreamId,
raw_error_code: u32
) -> RstStreamFrame
Constructs a new RstStreamFrame
that will use the given raw_error_code
for its payload.
pub fn error_code(&self) -> ErrorCode
[src]
Returns the interpreted error code of the frame. Any unknown error codes are mapped into
the InternalError
variant of the enum.
pub fn raw_error_code(&self) -> u32
[src]
Returns the original raw error code of the frame. If the code is unknown, it will not be changed.
Trait Implementations
impl Clone for RstStreamFrame
[src]
fn clone(&self) -> RstStreamFrame
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for RstStreamFrame
[src]
impl<'a> Frame<'a> for RstStreamFrame
[src]
type FlagType = NoFlag
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: &'a RawFrame<'a>) -> Option<Self>
[src]
fn is_set(&self, _: NoFlag) -> bool
[src]
fn get_stream_id(&self) -> StreamId
[src]
fn get_header(&self) -> FrameHeader
[src]
impl FrameIR for RstStreamFrame
[src]
fn serialize_into<B: FrameBuilder>(self, builder: &mut B) -> Result<()>
[src]
impl PartialEq<RstStreamFrame> for RstStreamFrame
[src]
fn eq(&self, other: &RstStreamFrame) -> bool
[src]
fn ne(&self, other: &RstStreamFrame) -> bool
[src]
impl StructuralPartialEq for RstStreamFrame
[src]
Auto Trait Implementations
impl RefUnwindSafe for RstStreamFrame
impl Send for RstStreamFrame
impl Sync for RstStreamFrame
impl Unpin for RstStreamFrame
impl UnwindSafe for RstStreamFrame
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,