pub struct MapRow {
pub step_name: String,
pub trust_zone: String,
pub access: Vec<bool>,
}Expand description
A row in the authority map: one step and its authority grants.
Fields§
§step_name: String§trust_zone: String§access: Vec<bool>Index into the authorities Vec — true if this step has access.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MapRow
impl RefUnwindSafe for MapRow
impl Send for MapRow
impl Sync for MapRow
impl Unpin for MapRow
impl UnsafeUnpin for MapRow
impl UnwindSafe for MapRow
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