pub struct Http2StreamRef {
pub connection_id: Ulid,
pub stream_id: u32,
}Expand description
Reference to an HTTP/2 stream within a connection.
Fields§
§connection_id: Ulid§stream_id: u32Trait Implementations§
Source§impl Clone for Http2StreamRef
impl Clone for Http2StreamRef
Source§fn clone(&self) -> Http2StreamRef
fn clone(&self) -> Http2StreamRef
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for Http2StreamRef
Source§impl Debug for Http2StreamRef
impl Debug for Http2StreamRef
Source§impl<'de> Deserialize<'de> for Http2StreamRef
impl<'de> Deserialize<'de> for Http2StreamRef
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Http2StreamRef
Source§impl Hash for Http2StreamRef
impl Hash for Http2StreamRef
Source§impl PartialEq for Http2StreamRef
impl PartialEq for Http2StreamRef
Source§impl Serialize for Http2StreamRef
impl Serialize for Http2StreamRef
impl StructuralPartialEq for Http2StreamRef
Auto Trait Implementations§
impl Freeze for Http2StreamRef
impl RefUnwindSafe for Http2StreamRef
impl Send for Http2StreamRef
impl Sync for Http2StreamRef
impl Unpin for Http2StreamRef
impl UnsafeUnpin for Http2StreamRef
impl UnwindSafe for Http2StreamRef
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