pub struct FollowEdge {
pub parent: String,
pub nested: String,
pub target: String,
pub kind: FollowEdgeKind,
}Expand description
One edge in ListOutput::follows.
parentis the top-level input the follows is declared on.nestedis the nested input being redirected.targetis the renderedcrate::follows::AttrPaththe nested input is redirected to.kinddistinguishes indirect (URL-less, follows another input) from direct (URL-bearing) declarations.
Fields§
§parent: String§nested: String§target: String§kind: FollowEdgeKindTrait Implementations§
Source§impl Clone for FollowEdge
impl Clone for FollowEdge
Source§fn clone(&self) -> FollowEdge
fn clone(&self) -> FollowEdge
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 FollowEdge
impl Debug for FollowEdge
Source§impl PartialEq for FollowEdge
impl PartialEq for FollowEdge
Source§fn eq(&self, other: &FollowEdge) -> bool
fn eq(&self, other: &FollowEdge) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FollowEdge
impl Serialize for FollowEdge
impl StructuralPartialEq for FollowEdge
Auto Trait Implementations§
impl Freeze for FollowEdge
impl RefUnwindSafe for FollowEdge
impl Send for FollowEdge
impl Sync for FollowEdge
impl Unpin for FollowEdge
impl UnsafeUnpin for FollowEdge
impl UnwindSafe for FollowEdge
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more