pub struct MBC(/* private fields */);Available on crate feature
kernel only.Expand description
Implementations§
Source§impl MBC
impl MBC
Sourcepub const unsafe fn as_mut(&mut self) -> &mut u32
pub const unsafe fn as_mut(&mut self) -> &mut u32
Returns a mutable reference to the underlying raw value.
§Safety
Be sure the integer being set is meaningful for the actual type.
Sourcepub const unsafe fn from_raw(v: u32) -> Self
pub const unsafe fn from_raw(v: u32) -> Self
Constructs a new object by wrapping the given integer value.
§Safety
Be sure the given value is meaningful for the actual type.
Sourcepub const fn raw(&self) -> u32
pub const fn raw(&self) -> u32
Returns the primitive integer underlying value.
This method is similar to Into, but it
is const, therefore it can be used in
const contexts.
Source§impl MBC
impl MBC
pub const COMPOSITE: Self
pub const ERR_INVALID_CHARS: Self
pub const PRECOMPOSED: Self
pub const USEGLYPHCHARS: Self
Trait Implementations§
Source§impl BitAndAssign for MBC
impl BitAndAssign for MBC
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&= operation. Read moreSource§impl BitOrAssign for MBC
impl BitOrAssign for MBC
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|= operation. Read moreSource§impl BitXorAssign for MBC
impl BitXorAssign for MBC
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^= operation. Read moreSource§impl Ord for MBC
impl Ord for MBC
Source§impl PartialOrd for MBC
impl PartialOrd for MBC
impl Copy for MBC
impl Eq for MBC
impl StructuralPartialEq for MBC
Auto Trait Implementations§
impl Freeze for MBC
impl RefUnwindSafe for MBC
impl Send for MBC
impl Sync for MBC
impl Unpin for MBC
impl UnwindSafe for MBC
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