pub struct DelegationEdge {
pub parent: String,
pub child: String,
pub signature: Vec<u8>,
}Expand description
A delegation edge: the parent’s credential over the child node.
Fields§
§parent: StringParent authority identifier.
child: StringChild authority identifier.
signature: Vec<u8>The parent’s signature over the child’s AuthorityNode::binding_bytes.
Trait Implementations§
Source§impl Clone for DelegationEdge
impl Clone for DelegationEdge
Source§fn clone(&self) -> DelegationEdge
fn clone(&self) -> DelegationEdge
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 DelegationEdge
impl Debug for DelegationEdge
Source§impl<'de> Deserialize<'de> for DelegationEdge
impl<'de> Deserialize<'de> for DelegationEdge
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DelegationEdge
impl RefUnwindSafe for DelegationEdge
impl Send for DelegationEdge
impl Sync for DelegationEdge
impl Unpin for DelegationEdge
impl UnsafeUnpin for DelegationEdge
impl UnwindSafe for DelegationEdge
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