pub struct Credential(/* private fields */);
Expand description
Wraps the kernel’s struct cred
.
Credentials are used for various security checks in the kernel.
Most fields of credentials are immutable. When things have their credentials changed, that happens by replacing the credential instead of changing an existing credential. See the kernel documentation for more info on this.
§Invariants
Instances of this type are always ref-counted, that is, a call to get_cred
ensures that the
allocation remains valid at least until the matching call to put_cred
.
Implementations§
Source§impl Credential
impl Credential
Sourcepub unsafe fn from_ptr<'a>(ptr: *const cred) -> &'a Credential
pub unsafe fn from_ptr<'a>(ptr: *const cred) -> &'a Credential
Creates a reference to a Credential
from a valid pointer.
§Safety
The caller must ensure that ptr
is valid and remains valid for the lifetime of the
returned Credential
reference.
Trait Implementations§
Source§impl AlwaysRefCounted for Credential
impl AlwaysRefCounted for Credential
impl Send for Credential
impl Sync for Credential
Auto Trait Implementations§
impl !Freeze for Credential
impl !RefUnwindSafe for Credential
impl !Unpin for Credential
impl UnwindSafe for Credential
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