pub enum AclDirection {
Any = 0,
In = 1,
Out = 2,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AclDirection
impl Clone for AclDirection
Source§fn clone(&self) -> AclDirection
fn clone(&self) -> AclDirection
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 AclDirection
impl Debug for AclDirection
Source§impl FromStr for AclDirection
impl FromStr for AclDirection
Source§impl PartialEq for AclDirection
impl PartialEq for AclDirection
Source§impl ToString for AclDirection
impl ToString for AclDirection
impl Eq for AclDirection
impl StructuralPartialEq for AclDirection
Auto Trait Implementations§
impl Freeze for AclDirection
impl RefUnwindSafe for AclDirection
impl Send for AclDirection
impl Sync for AclDirection
impl Unpin for AclDirection
impl UnwindSafe for AclDirection
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more