pub struct GroupStatus(/* private fields */);
Implementations§
Source§impl GroupStatus
impl GroupStatus
Sourcepub const fn with_viable_checked(self, value: bool) -> Result<Self, ()>
pub const fn with_viable_checked(self, value: bool) -> Result<Self, ()>
Bits: 0..1
Sourcepub const fn with_viable(self, value: bool) -> Self
pub const fn with_viable(self, value: bool) -> Self
Bits: 0..1
Sourcepub const fn set_viable(&mut self, value: bool)
pub const fn set_viable(&mut self, value: bool)
Bits: 0..1
Sourcepub const fn container_set(&self) -> bool
pub const fn container_set(&self) -> bool
Bits: 1..2
Sourcepub const fn with_container_set_checked(self, value: bool) -> Result<Self, ()>
pub const fn with_container_set_checked(self, value: bool) -> Result<Self, ()>
Bits: 1..2
Sourcepub const fn with_container_set(self, value: bool) -> Self
pub const fn with_container_set(self, value: bool) -> Self
Bits: 1..2
Sourcepub const fn set_container_set(&mut self, value: bool)
pub const fn set_container_set(&mut self, value: bool)
Bits: 1..2
Trait Implementations§
Source§impl Clone for GroupStatus
impl Clone for GroupStatus
Source§fn clone(&self) -> GroupStatus
fn clone(&self) -> GroupStatus
Returns a copy 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 moreSource§impl Debug for GroupStatus
impl Debug for GroupStatus
Source§impl Default for GroupStatus
impl Default for GroupStatus
Source§impl From<GroupStatus> for u32
impl From<GroupStatus> for u32
Source§fn from(v: GroupStatus) -> u32
fn from(v: GroupStatus) -> u32
Converts to this type from the input type.
Source§impl From<u32> for GroupStatus
impl From<u32> for GroupStatus
impl Copy for GroupStatus
Auto Trait Implementations§
impl Freeze for GroupStatus
impl RefUnwindSafe for GroupStatus
impl Send for GroupStatus
impl Sync for GroupStatus
impl Unpin for GroupStatus
impl UnwindSafe for GroupStatus
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