Struct tss2_fapi_rs::BranCallbackParam
pub struct BranCallbackParam<'a> {
pub object_path: &'a str,
pub description: Option<&'a str>,
pub branches: Vec<&'a str>,
}
Expand description
Wraps the parameters to be passed to the BranCallback
callback.
Fields§
§object_path: &'a str
Identifies the policy (path) being executed for which a branch choice is requested.
description: Option<&'a str>
Description as provided in the policy definition (optional).
branches: Vec<&'a str>
A list of human readable names for the branches as from the PolicyOR statement.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for BranCallbackParam<'a>
impl<'a> RefUnwindSafe for BranCallbackParam<'a>
impl<'a> Send for BranCallbackParam<'a>
impl<'a> Sync for BranCallbackParam<'a>
impl<'a> Unpin for BranCallbackParam<'a>
impl<'a> UnwindSafe for BranCallbackParam<'a>
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