pub struct SecurityCtx { /* private fields */ }
Expand description
A security context string.
§Invariants
The secdata
and seclen
fields correspond to a valid security context as returned by a
successful call to security_secid_to_secctx
, that has not yet been destroyed by calling
security_release_secctx
.
Implementations§
Source§impl SecurityCtx
impl SecurityCtx
Sourcepub fn from_secid(secid: u32) -> Result<Self>
pub fn from_secid(secid: u32) -> Result<Self>
Get the security context given its id.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SecurityCtx
impl RefUnwindSafe for SecurityCtx
impl !Send for SecurityCtx
impl !Sync for SecurityCtx
impl Unpin for SecurityCtx
impl UnwindSafe for SecurityCtx
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