pub struct UrlResolution {
pub outgoing: Vec<OutgoingLink>,
pub diagnostics: Vec<Diagnostic>,
}Expand description
What one resolve_urls walk learned: the dependency edges the build needs,
and the references it could not resolve. A miss produces a diagnostic and
keeps the author’s bytes — never a guessed URL (moss#903 bug 3). The host
surfaces diagnostics; moss-core does no I/O.
Fields§
§outgoing: Vec<OutgoingLink>§diagnostics: Vec<Diagnostic>Trait Implementations§
Source§impl Debug for UrlResolution
impl Debug for UrlResolution
Source§impl Default for UrlResolution
impl Default for UrlResolution
Source§fn default() -> UrlResolution
fn default() -> UrlResolution
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UrlResolution
impl RefUnwindSafe for UrlResolution
impl Send for UrlResolution
impl Sync for UrlResolution
impl Unpin for UrlResolution
impl UnsafeUnpin for UrlResolution
impl UnwindSafe for UrlResolution
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