pub enum IpAccessControlEntryAction {
Allow,
Block,
}
Expand description
IpAccessControlEntryAction :
Variants§
Trait Implementations§
Source§impl Clone for IpAccessControlEntryAction
impl Clone for IpAccessControlEntryAction
Source§fn clone(&self) -> IpAccessControlEntryAction
fn clone(&self) -> IpAccessControlEntryAction
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 IpAccessControlEntryAction
impl Debug for IpAccessControlEntryAction
Source§impl Default for IpAccessControlEntryAction
impl Default for IpAccessControlEntryAction
Source§fn default() -> IpAccessControlEntryAction
fn default() -> IpAccessControlEntryAction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IpAccessControlEntryAction
impl<'de> Deserialize<'de> for IpAccessControlEntryAction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for IpAccessControlEntryAction
impl Display for IpAccessControlEntryAction
Source§impl Hash for IpAccessControlEntryAction
impl Hash for IpAccessControlEntryAction
Source§impl Ord for IpAccessControlEntryAction
impl Ord for IpAccessControlEntryAction
Source§fn cmp(&self, other: &IpAccessControlEntryAction) -> Ordering
fn cmp(&self, other: &IpAccessControlEntryAction) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for IpAccessControlEntryAction
impl PartialOrd for IpAccessControlEntryAction
impl Copy for IpAccessControlEntryAction
impl Eq for IpAccessControlEntryAction
impl StructuralPartialEq for IpAccessControlEntryAction
Auto Trait Implementations§
impl Freeze for IpAccessControlEntryAction
impl RefUnwindSafe for IpAccessControlEntryAction
impl Send for IpAccessControlEntryAction
impl Sync for IpAccessControlEntryAction
impl Unpin for IpAccessControlEntryAction
impl UnwindSafe for IpAccessControlEntryAction
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.