pub struct UriValueTree {
pub with_schema_and_host: BoolValueTree,
pub schema: IndexValueTree,
pub authority: IndexValueTree,
pub host: IndexValueTree,
pub path: IndexValueTree,
pub query: IndexValueTree,
pub whose_turn: usize,
}Fields§
§with_schema_and_host: BoolValueTree§schema: IndexValueTree§host: IndexValueTree§path: IndexValueTree§query: IndexValueTree§whose_turn: usizeTrait Implementations§
Source§impl Clone for UriValueTree
impl Clone for UriValueTree
Source§fn clone(&self) -> UriValueTree
fn clone(&self) -> UriValueTree
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 UriValueTree
impl Debug for UriValueTree
Source§impl ValueTree for UriValueTree
impl ValueTree for UriValueTree
Source§type Value = ArbitraryUri
type Value = ArbitraryUri
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 UriValueTree
impl RefUnwindSafe for UriValueTree
impl Send for UriValueTree
impl Sync for UriValueTree
impl Unpin for UriValueTree
impl UnwindSafe for UriValueTree
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