pub struct HttpLinkResolution {
pub edges: Vec<Edge>,
pub ambiguities: Vec<HttpLinkAmbiguity>,
}Expand description
Deterministic automatic HTTP links plus unresolved exact-provider ambiguities.
Fields§
§edges: Vec<Edge>Unambiguous automatic relationships.
ambiguities: Vec<HttpLinkAmbiguity>Source-free ambiguous contract identities omitted from the edge set.
Trait Implementations§
Source§impl Clone for HttpLinkResolution
impl Clone for HttpLinkResolution
Source§fn clone(&self) -> HttpLinkResolution
fn clone(&self) -> HttpLinkResolution
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 HttpLinkResolution
impl Debug for HttpLinkResolution
Source§impl PartialEq for HttpLinkResolution
impl PartialEq for HttpLinkResolution
impl StructuralPartialEq for HttpLinkResolution
Auto Trait Implementations§
impl Freeze for HttpLinkResolution
impl RefUnwindSafe for HttpLinkResolution
impl Send for HttpLinkResolution
impl Sync for HttpLinkResolution
impl Unpin for HttpLinkResolution
impl UnsafeUnpin for HttpLinkResolution
impl UnwindSafe for HttpLinkResolution
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