pub struct CompuMethodBitfieldTextTableContent {
pub text: String,
pub value: f64,
pub mask: u64,
}
Expand description
A single entry of a bitfield text table conversion
Fields§
§text: String
text of this entry
value: f64
numeric value of this entry
mask: u64
bit mask of this entry
Trait Implementations§
Source§impl Clone for CompuMethodBitfieldTextTableContent
impl Clone for CompuMethodBitfieldTextTableContent
Source§fn clone(&self) -> CompuMethodBitfieldTextTableContent
fn clone(&self) -> CompuMethodBitfieldTextTableContent
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 PartialEq for CompuMethodBitfieldTextTableContent
impl PartialEq for CompuMethodBitfieldTextTableContent
Source§fn eq(&self, other: &CompuMethodBitfieldTextTableContent) -> bool
fn eq(&self, other: &CompuMethodBitfieldTextTableContent) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CompuMethodBitfieldTextTableContent
Auto Trait Implementations§
impl Freeze for CompuMethodBitfieldTextTableContent
impl RefUnwindSafe for CompuMethodBitfieldTextTableContent
impl Send for CompuMethodBitfieldTextTableContent
impl Sync for CompuMethodBitfieldTextTableContent
impl Unpin for CompuMethodBitfieldTextTableContent
impl UnwindSafe for CompuMethodBitfieldTextTableContent
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