#[repr(u8)]pub enum BindDirection {
Output = 16,
Input = 32,
InputOutput = 48,
}Expand description
Bind parameter direction (IN, OUT, IN OUT)
Variants§
Output = 16
Output only parameter (server writes, client reads)
Input = 32
Input only parameter (client writes, server reads) - default
InputOutput = 48
Input/Output parameter (bidirectional)
Implementations§
Trait Implementations§
Source§impl Clone for BindDirection
impl Clone for BindDirection
Source§fn clone(&self) -> BindDirection
fn clone(&self) -> BindDirection
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BindDirection
impl Debug for BindDirection
Source§impl Default for BindDirection
impl Default for BindDirection
Source§fn default() -> BindDirection
fn default() -> BindDirection
Returns the “default value” for a type. Read more
Source§impl PartialEq for BindDirection
impl PartialEq for BindDirection
Source§impl TryFrom<u8> for BindDirection
impl TryFrom<u8> for BindDirection
impl Copy for BindDirection
impl Eq for BindDirection
impl StructuralPartialEq for BindDirection
Auto Trait Implementations§
impl Freeze for BindDirection
impl RefUnwindSafe for BindDirection
impl Send for BindDirection
impl Sync for BindDirection
impl Unpin for BindDirection
impl UnwindSafe for BindDirection
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.