pub enum FilterName {
Encryption,
SelectiveEncryption,
}
Expand description
Patterns of the FilterName field. Currently, FilterName consists of:
"Encryption"
"SE"
(Selective Encryption)
But these are strings so we will be hard to refuse other values at this rate. Therefore this limits any FilterName pattern to fix it to an enum.
Variants§
Trait Implementations§
Source§impl Clone for FilterName
impl Clone for FilterName
Source§fn clone(&self) -> FilterName
fn clone(&self) -> FilterName
Returns a copy 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 FilterName
impl Debug for FilterName
Source§impl Display for FilterName
impl Display for FilterName
Source§impl PartialEq for FilterName
impl PartialEq for FilterName
impl Copy for FilterName
impl Eq for FilterName
impl StructuralPartialEq for FilterName
Auto Trait Implementations§
impl Freeze for FilterName
impl RefUnwindSafe for FilterName
impl Send for FilterName
impl Sync for FilterName
impl Unpin for FilterName
impl UnwindSafe for FilterName
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