pub enum FacePersistency {
OnDemand = 0,
Persistent = 1,
Permanent = 2,
}Expand description
Face persistence level (NFD semantics).
OnDemand(0): created by a listener, destroyed on idle timeout or I/O error.Persistent(1): created by management command, survives I/O errors.Permanent(2): never destroyed, even on I/O errors (multicast, always-on links).
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for FacePersistency
impl Clone for FacePersistency
Source§fn clone(&self) -> FacePersistency
fn clone(&self) -> FacePersistency
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 FacePersistency
impl Debug for FacePersistency
Source§impl PartialEq for FacePersistency
impl PartialEq for FacePersistency
impl Copy for FacePersistency
impl Eq for FacePersistency
impl StructuralPartialEq for FacePersistency
Auto Trait Implementations§
impl Freeze for FacePersistency
impl RefUnwindSafe for FacePersistency
impl Send for FacePersistency
impl Sync for FacePersistency
impl Unpin for FacePersistency
impl UnwindSafe for FacePersistency
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more