pub struct PolicyChain {
pub chain: Vec<PolicyLink>,
}
Expand description
A policy chain. Each link represents a requirement that an identity must meet in order to act as a signer for the subsequent link.
Fields§
§chain: Vec<PolicyLink>
Trait Implementations§
Source§impl Clone for PolicyChain
impl Clone for PolicyChain
Source§fn clone(&self) -> PolicyChain
fn clone(&self) -> PolicyChain
Returns a duplicate of the value. Read more
1.0.0 · 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 PolicyChain
impl Debug for PolicyChain
Source§impl<'de> Deserialize<'de> for PolicyChain
impl<'de> Deserialize<'de> for PolicyChain
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 PolicyChain
impl RefUnwindSafe for PolicyChain
impl Send for PolicyChain
impl Sync for PolicyChain
impl Unpin for PolicyChain
impl UnwindSafe for PolicyChain
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