pub enum FirstArgKey {
Atom(AtomId),
Integer(i64),
Functor(AtomId, usize),
}Expand description
Key for first-argument indexing.
Variants§
Trait Implementations§
Source§impl Clone for FirstArgKey
impl Clone for FirstArgKey
Source§fn clone(&self) -> FirstArgKey
fn clone(&self) -> FirstArgKey
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 moreSource§impl Debug for FirstArgKey
impl Debug for FirstArgKey
impl Eq for FirstArgKey
Source§impl Hash for FirstArgKey
impl Hash for FirstArgKey
Source§impl PartialEq for FirstArgKey
impl PartialEq for FirstArgKey
Source§fn eq(&self, other: &FirstArgKey) -> bool
fn eq(&self, other: &FirstArgKey) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FirstArgKey
Auto Trait Implementations§
impl Freeze for FirstArgKey
impl RefUnwindSafe for FirstArgKey
impl Send for FirstArgKey
impl Sync for FirstArgKey
impl Unpin for FirstArgKey
impl UnsafeUnpin for FirstArgKey
impl UnwindSafe for FirstArgKey
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