pub struct LVBool(/* private fields */);
Expand description
The LVBool type is used by LabVIEW for boolean types on the block diagram.
When you pass data to and from LabVIEW as boolean types, this is the equivalent.
You can use .into()
to convert between this and
rust bool
types.
NOTE: This does not seem to work if the boolean is used as a parameter in a call library function node. In that case you should convert to numeric first.
Trait Implementations§
impl Copy for LVBool
impl Eq for LVBool
impl StructuralPartialEq for LVBool
Auto Trait Implementations§
impl Freeze for LVBool
impl RefUnwindSafe for LVBool
impl Send for LVBool
impl Sync for LVBool
impl Unpin for LVBool
impl UnwindSafe for LVBool
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