pub struct ContinuationFrame {
pub stream_id: StreamId,
pub end_headers: bool,
pub header_block_fragment: Vec<u8>,
}Expand description
CONTINUATION フレーム (RFC 9113 Section 6.10)
Fields§
§stream_id: StreamIdストリーム ID
end_headers: boolEND_HEADERS フラグ
header_block_fragment: Vec<u8>ヘッダーブロックフラグメント
Implementations§
Trait Implementations§
Source§impl Clone for ContinuationFrame
impl Clone for ContinuationFrame
Source§fn clone(&self) -> ContinuationFrame
fn clone(&self) -> ContinuationFrame
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 ContinuationFrame
impl Debug for ContinuationFrame
Source§impl PartialEq for ContinuationFrame
impl PartialEq for ContinuationFrame
impl Eq for ContinuationFrame
impl StructuralPartialEq for ContinuationFrame
Auto Trait Implementations§
impl Freeze for ContinuationFrame
impl RefUnwindSafe for ContinuationFrame
impl Send for ContinuationFrame
impl Sync for ContinuationFrame
impl Unpin for ContinuationFrame
impl UnsafeUnpin for ContinuationFrame
impl UnwindSafe for ContinuationFrame
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