pub struct HeaderNameValueTree(/* private fields */);Trait Implementations§
Source§impl Clone for HeaderNameValueTree
impl Clone for HeaderNameValueTree
Source§fn clone(&self) -> HeaderNameValueTree
fn clone(&self) -> HeaderNameValueTree
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 HeaderNameValueTree
impl Debug for HeaderNameValueTree
Source§impl ValueTree for HeaderNameValueTree
impl ValueTree for HeaderNameValueTree
Source§type Value = ArbitraryHeaderName
type Value = ArbitraryHeaderName
The type of the value produced by this
ValueTree.Source§fn simplify(&mut self) -> bool
fn simplify(&mut self) -> bool
Attempts to simplify the current value. Notionally, this sets the
“high” value to the current value, and the current value to a “halfway
point” between high and low, rounding towards low. Read more
Source§fn complicate(&mut self) -> bool
fn complicate(&mut self) -> bool
Attempts to partially undo the last simplification. Notionally, this
sets the “low” value to one plus the current value, and the current
value to a “halfway point” between high and the new low, rounding
towards low. Read more
Auto Trait Implementations§
impl Freeze for HeaderNameValueTree
impl RefUnwindSafe for HeaderNameValueTree
impl Send for HeaderNameValueTree
impl Sync for HeaderNameValueTree
impl Unpin for HeaderNameValueTree
impl UnwindSafe for HeaderNameValueTree
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