pub enum InterfaceDirection {
Output,
Input,
}Expand description
Direction of a namespace interface.
Variants§
Output
Output: this capability is provided by the namespace
Input
Input: this capability is required by the namespace
Trait Implementations§
Source§impl Clone for InterfaceDirection
impl Clone for InterfaceDirection
Source§fn clone(&self) -> InterfaceDirection
fn clone(&self) -> InterfaceDirection
Returns a duplicate 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 Debug for InterfaceDirection
impl Debug for InterfaceDirection
Source§impl Hash for InterfaceDirection
impl Hash for InterfaceDirection
Source§impl PartialEq for InterfaceDirection
impl PartialEq for InterfaceDirection
impl Copy for InterfaceDirection
impl Eq for InterfaceDirection
impl StructuralPartialEq for InterfaceDirection
Auto Trait Implementations§
impl Freeze for InterfaceDirection
impl RefUnwindSafe for InterfaceDirection
impl Send for InterfaceDirection
impl Sync for InterfaceDirection
impl Unpin for InterfaceDirection
impl UnsafeUnpin for InterfaceDirection
impl UnwindSafe for InterfaceDirection
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