Struct httpbis::solicit::frame::window_update::WindowUpdateFrame [] [src]

pub struct WindowUpdateFrame { /* fields omitted */ }

The struct represents the WINDOW_UPDATE HTTP/2 frame.

Methods

impl WindowUpdateFrame
[src]

Creates a new WindowUpdateFrame that will increment the connection-level window by the given increment.

Creates a new WindowUpdateFrame that will increment the given stream's window by the given increment.

Returns the window increment indicated by the frame.

Trait Implementations

impl Clone for WindowUpdateFrame
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for WindowUpdateFrame
[src]

Formats the value using the given formatter.

impl PartialEq for WindowUpdateFrame
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Frame for WindowUpdateFrame
[src]

The type that represents the flags that the particular Frame can take. This makes sure that only valid Flags are used with each Frame. Read more

Creates a new Frame from the given RawFrame (i.e. header and payload), if possible. Read more

Tests if the given flag is set for the frame.

Returns the StreamId of the stream to which the frame is associated

Returns a FrameHeader based on the current state of the Frame.

impl FrameIR for WindowUpdateFrame
[src]

Write out the on-the-wire representation of the frame into the given FrameBuilder.