pub struct ResolvedUrl {
pub matched_url: String,
pub resolution: UrlResolutionKind,
pub location: RepoLocation,
}Expand description
Details about a resolved URL mapping.
Fields§
§matched_url: StringThe key in repos.json that matched
resolution: UrlResolutionKindHow the match was found
location: RepoLocationThe location details (cloned)
Trait Implementations§
Source§impl Clone for ResolvedUrl
impl Clone for ResolvedUrl
Source§fn clone(&self) -> ResolvedUrl
fn clone(&self) -> ResolvedUrl
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 moreAuto Trait Implementations§
impl Freeze for ResolvedUrl
impl RefUnwindSafe for ResolvedUrl
impl Send for ResolvedUrl
impl Sync for ResolvedUrl
impl Unpin for ResolvedUrl
impl UnsafeUnpin for ResolvedUrl
impl UnwindSafe for ResolvedUrl
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