pub struct AuthorityMap {
pub authorities: Vec<String>,
pub rows: Vec<MapRow>,
}Expand description
Authority map: which steps have access to which secrets/identities.
Fields§
Column headers: authority source names (secrets + identities).
rows: Vec<MapRow>One row per step.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AuthorityMap
impl RefUnwindSafe for AuthorityMap
impl Send for AuthorityMap
impl Sync for AuthorityMap
impl Unpin for AuthorityMap
impl UnsafeUnpin for AuthorityMap
impl UnwindSafe for AuthorityMap
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