#[repr(u32)]pub enum mpr_dir {
MPR_DIR_UNDEFINED = 0,
MPR_DIR_IN = 1,
MPR_DIR_OUT = 2,
MPR_DIR_ANY = 3,
MPR_DIR_BOTH = 7,
}Expand description
The set of possible directions for a signal. @ingroup signal
Variants§
MPR_DIR_UNDEFINED = 0
< Not yet defined.
MPR_DIR_IN = 1
< Signal is an input
MPR_DIR_OUT = 2
< Signal is an output
MPR_DIR_ANY = 3
< Either incoming or outgoing
MPR_DIR_BOTH = 7
< Both directions apply. Currently signals cannot be both inputs and outputs, so this value is only used for querying device maps that touch only local signals.
Trait Implementations§
impl Copy for mpr_dir
impl Eq for mpr_dir
impl StructuralPartialEq for mpr_dir
Auto Trait Implementations§
impl Freeze for mpr_dir
impl RefUnwindSafe for mpr_dir
impl Send for mpr_dir
impl Sync for mpr_dir
impl Unpin for mpr_dir
impl UnwindSafe for mpr_dir
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