[][src]Struct aces::LinkID

#[repr(transparent)]
pub struct LinkID(_);

An identifier of a Link, a type derived from AtomID.

There is a trivial bijection between values of this type and numeric codes of DIMACS variables. This mapping simplifies the construction of SAT queries and interpretation of solutions.

Methods

impl LinkID[src]

pub const fn get(self) -> AtomID[src]

Trait Implementations

impl Atomic for LinkID[src]

impl Clone for LinkID[src]

impl Copy for LinkID[src]

impl Debug for LinkID[src]

impl Eq for LinkID[src]

impl ExclusivelyContextual for LinkID[src]

impl From<LinkID> for AtomID[src]

impl From<NonZeroUsize> for LinkID[src]

impl Ord for LinkID[src]

impl PartialEq<LinkID> for LinkID[src]

impl PartialOrd<LinkID> for LinkID[src]

impl StructuralEq for LinkID[src]

impl StructuralPartialEq for LinkID[src]

Auto Trait Implementations

impl RefUnwindSafe for LinkID

impl Send for LinkID

impl Sync for LinkID

impl Unpin for LinkID

impl UnwindSafe for LinkID

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<Reference, Outer, OuterFieldType, Inner> HasPart<Nested<Outer, Inner>> for Reference where
    Inner: Part,
    Outer: Part<PartType = Field<OuterFieldType>>,
    OuterFieldType: HasPart<Inner, RawTarget = OuterFieldType> + PartialRefTarget + ?Sized,
    Reference: HasPart<Outer> + ?Sized

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,