pub enum FlowerKeyCtrlFlags {
Frag = 1,
Firstfrag = 2,
Tuncsum = 4,
Tundf = 8,
Tunoam = 16,
Tuncrit = 32,
}Available on crate feature
tc only.Expand description
Flags - defines an integer enumeration, with values for each entry occupying a bit, starting from bit 0, (e.g. 1, 2, 4, 8)
Variants§
Implementations§
Source§impl FlowerKeyCtrlFlags
impl FlowerKeyCtrlFlags
pub fn from_value(value: u64) -> Option<Self>
Trait Implementations§
Source§impl Clone for FlowerKeyCtrlFlags
impl Clone for FlowerKeyCtrlFlags
Source§fn clone(&self) -> FlowerKeyCtrlFlags
fn clone(&self) -> FlowerKeyCtrlFlags
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 moreSource§impl Debug for FlowerKeyCtrlFlags
impl Debug for FlowerKeyCtrlFlags
impl Copy for FlowerKeyCtrlFlags
Auto Trait Implementations§
impl Freeze for FlowerKeyCtrlFlags
impl RefUnwindSafe for FlowerKeyCtrlFlags
impl Send for FlowerKeyCtrlFlags
impl Sync for FlowerKeyCtrlFlags
impl Unpin for FlowerKeyCtrlFlags
impl UnwindSafe for FlowerKeyCtrlFlags
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