pub struct SourceReplacementResolution {
pub resolved: SourceLocator,
pub hops: Vec<SourceLocator>,
}Expand description
Result of walking the replacement chain.
Fields§
§resolved: SourceLocatorTerminal source (the value the caller should actually
open). Equals the initial argument when no replacement
applied.
hops: Vec<SourceLocator>Every original Cabin walked through, in order. Empty
when initial was already terminal.
Trait Implementations§
Source§impl Clone for SourceReplacementResolution
impl Clone for SourceReplacementResolution
Source§fn clone(&self) -> SourceReplacementResolution
fn clone(&self) -> SourceReplacementResolution
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 SourceReplacementResolution
impl Debug for SourceReplacementResolution
Source§impl PartialEq for SourceReplacementResolution
impl PartialEq for SourceReplacementResolution
Source§fn eq(&self, other: &SourceReplacementResolution) -> bool
fn eq(&self, other: &SourceReplacementResolution) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SourceReplacementResolution
impl StructuralPartialEq for SourceReplacementResolution
Auto Trait Implementations§
impl Freeze for SourceReplacementResolution
impl RefUnwindSafe for SourceReplacementResolution
impl Send for SourceReplacementResolution
impl Sync for SourceReplacementResolution
impl Unpin for SourceReplacementResolution
impl UnsafeUnpin for SourceReplacementResolution
impl UnwindSafe for SourceReplacementResolution
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.