pub enum InterfaceType {
Public,
Internal,
Admin,
}Expand description
Interface type: public, internal or admin.
Variants§
Public
Public interface (used by default).
Internal
Internal interface.
Admin
Administrator interface.
Trait Implementations§
Source§impl Clone for InterfaceType
impl Clone for InterfaceType
Source§fn clone(&self) -> InterfaceType
fn clone(&self) -> InterfaceType
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 InterfaceType
Source§impl Debug for InterfaceType
impl Debug for InterfaceType
Source§impl Default for InterfaceType
impl Default for InterfaceType
Source§fn default() -> InterfaceType
fn default() -> InterfaceType
Returns the “default value” for a type. Read more
Source§impl Display for InterfaceType
impl Display for InterfaceType
impl Eq for InterfaceType
Source§impl From<InterfaceType> for ValidInterfaces
impl From<InterfaceType> for ValidInterfaces
Source§fn from(value: InterfaceType) -> ValidInterfaces
fn from(value: InterfaceType) -> ValidInterfaces
Converts to this type from the input type.
Source§impl<'s> FromIterator<&'s InterfaceType> for ValidInterfaces
impl<'s> FromIterator<&'s InterfaceType> for ValidInterfaces
Source§fn from_iter<T>(iter: T) -> ValidInterfaceswhere
T: IntoIterator<Item = &'s InterfaceType>,
fn from_iter<T>(iter: T) -> ValidInterfaceswhere
T: IntoIterator<Item = &'s InterfaceType>,
Create from an iterator of interface types.
Any duplicates are ignored.
Source§impl FromIterator<InterfaceType> for ValidInterfaces
impl FromIterator<InterfaceType> for ValidInterfaces
Source§fn from_iter<T>(iter: T) -> ValidInterfaceswhere
T: IntoIterator<Item = InterfaceType>,
fn from_iter<T>(iter: T) -> ValidInterfaceswhere
T: IntoIterator<Item = InterfaceType>,
Create from an iterator of interface types.
Any duplicates are ignored.
Source§impl FromStr for InterfaceType
impl FromStr for InterfaceType
Source§impl Hash for InterfaceType
impl Hash for InterfaceType
Source§impl PartialEq for InterfaceType
impl PartialEq for InterfaceType
Source§fn eq(&self, other: &InterfaceType) -> bool
fn eq(&self, other: &InterfaceType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<T> PartialEq<T> for InterfaceType
impl<T> PartialEq<T> for InterfaceType
impl StructuralPartialEq for InterfaceType
Auto Trait Implementations§
impl Freeze for InterfaceType
impl RefUnwindSafe for InterfaceType
impl Send for InterfaceType
impl Sync for InterfaceType
impl Unpin for InterfaceType
impl UnsafeUnpin for InterfaceType
impl UnwindSafe for InterfaceType
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.