pub struct PseudoOrder { /* private fields */ }Expand description
Represents the order of HTTP/2 pseudo-header fields in a header block.
This structure maintains an ordered list of pseudo-header fields (such as :method, :scheme, etc.)
for use when encoding or decoding HTTP/2 header blocks. The order of pseudo-headers is significant
according to the HTTP/2 specification, and this type ensures that the correct order is preserved
and that no duplicates are present.
Typically, a PseudoOrder is costructed using the PseudoOrderBuilder to enforce uniqueness
and protocol-compliant ordering.
Implementations§
Source§impl PseudoOrder
impl PseudoOrder
pub fn builder() -> PseudoOrderBuilder
Trait Implementations§
Source§impl Clone for PseudoOrder
impl Clone for PseudoOrder
Source§fn clone(&self) -> PseudoOrder
fn clone(&self) -> PseudoOrder
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 moreSource§impl Debug for PseudoOrder
impl Debug for PseudoOrder
Source§impl Default for PseudoOrder
impl Default for PseudoOrder
Source§fn default() -> PseudoOrder
fn default() -> PseudoOrder
Returns the “default value” for a type. Read more
Source§impl Hash for PseudoOrder
impl Hash for PseudoOrder
Source§impl<'a> IntoIterator for &'a PseudoOrder
impl<'a> IntoIterator for &'a PseudoOrder
Source§impl PartialEq for PseudoOrder
impl PartialEq for PseudoOrder
Source§fn eq(&self, other: &PseudoOrder) -> bool
fn eq(&self, other: &PseudoOrder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PseudoOrder
impl StructuralPartialEq for PseudoOrder
Auto Trait Implementations§
impl Freeze for PseudoOrder
impl RefUnwindSafe for PseudoOrder
impl Send for PseudoOrder
impl Sync for PseudoOrder
impl Unpin for PseudoOrder
impl UnsafeUnpin for PseudoOrder
impl UnwindSafe for PseudoOrder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.