pub struct PathLink {
pub parent: AuthorityNode,
pub child: AuthorityNode,
pub edge: DelegationEdge,
}Expand description
One verified delegation link on a path.
Fields§
§parent: AuthorityNodeThe parent authority.
child: AuthorityNodeThe child authority.
edge: DelegationEdgeThe delegation credential that was verified.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PathLink
impl RefUnwindSafe for PathLink
impl Send for PathLink
impl Sync for PathLink
impl Unpin for PathLink
impl UnsafeUnpin for PathLink
impl UnwindSafe for PathLink
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