#[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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BindDirection
Source§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
impl Eq for BindDirection
Source§impl PartialEq for BindDirection
impl PartialEq for BindDirection
Source§fn eq(&self, other: &BindDirection) -> bool
fn eq(&self, other: &BindDirection) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin for BindDirection
impl UnwindSafe for BindDirection
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.