enum Link {
Entry(usize),
Extra(usize),
}
Expand description
A header value node is either linked to another node in the extra_values
list or it points to an entry in entries
. The entry in entries
is the
start of the list and holds the associated header name.
Variants§
Trait Implementations§
source§impl PartialEq for Link
impl PartialEq for Link
impl Copy for Link
impl Eq for Link
impl StructuralPartialEq for Link
Auto Trait Implementations§
impl Freeze for Link
impl RefUnwindSafe for Link
impl Send for Link
impl Sync for Link
impl Unpin for Link
impl UnwindSafe for Link
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