[][src]Struct yubihsm::setup::Role

pub struct Role { /* fields omitted */ }

Roles represent accounts on the device with specific permissions

Methods

impl Role[src]

pub fn new(credentials: Credentials) -> Self[src]

Create a new role object

pub fn authentication_key_label<L>(self, label: L) -> Self where
    L: Into<Label>, 
[src]

Set the label for this role's authentication key

pub fn capabilities(self, capabilities: Capability) -> Self[src]

Set the capabilities (i.e. permission) for this role

pub fn delegated_capabilities(self, capabilities: Capability) -> Self[src]

Set the delegated capabilities for this role

pub fn domains(self, domains: Domain) -> Self[src]

Set the domains this role is allowed to access

pub fn create(&self, client: &mut Client) -> Result<(), Error>[src]

Create this role within the YubiHSM 2 device

Trait Implementations

impl Clone for Role[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Role[src]

Auto Trait Implementations

impl Send for Role

impl Sync for Role

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Same for T

type Output = T

Should always be Self