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 · 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
Source§impl<'de> Deserialize<'de> for FirstArgKey
impl<'de> Deserialize<'de> for FirstArgKey
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for FirstArgKey
impl Hash for FirstArgKey
Source§impl PartialEq for FirstArgKey
impl PartialEq for FirstArgKey
Source§impl Serialize for FirstArgKey
impl Serialize for FirstArgKey
impl Eq for FirstArgKey
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