pub enum Acceptance {
Confirmed,
Inferred,
Refused,
Unknown,
}Expand description
Whether a family takes a tag in a class, and how that is known.
Variants§
Confirmed
A file under this tag has been written into this class and read back.
Inferred
The tag is this family’s own and belongs in this class, but no such write has been made.
Refused
The tag names a family and this class is not where it goes: another family’s tag, or this family’s own in the wrong class.
Unknown
Nothing here says either way: a tag no family’s own files carry — the shared library formats and the carriers — or one this crate does not read.
Trait Implementations§
Source§impl Clone for Acceptance
impl Clone for Acceptance
Source§fn clone(&self) -> Acceptance
fn clone(&self) -> Acceptance
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 Acceptance
Source§impl Debug for Acceptance
impl Debug for Acceptance
impl Eq for Acceptance
Source§impl PartialEq for Acceptance
impl PartialEq for Acceptance
impl StructuralPartialEq for Acceptance
Auto Trait Implementations§
impl Freeze for Acceptance
impl RefUnwindSafe for Acceptance
impl Send for Acceptance
impl Sync for Acceptance
impl Unpin for Acceptance
impl UnsafeUnpin for Acceptance
impl UnwindSafe for Acceptance
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.