pub enum BranchPriv {
Unknown,
User,
Kernel,
Hv,
}
Expand description
Branch privilege levels.
Since linux-6.1
: https://github.com/torvalds/linux/commit/5402d25aa5710d240040f73fb13d7d5c303ef071
Variants§
Trait Implementations§
Source§impl Clone for BranchPriv
impl Clone for BranchPriv
Source§fn clone(&self) -> BranchPriv
fn clone(&self) -> BranchPriv
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for BranchPriv
impl RefUnwindSafe for BranchPriv
impl Send for BranchPriv
impl Sync for BranchPriv
impl Unpin for BranchPriv
impl UnwindSafe for BranchPriv
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