[][src]Struct ascesis::ForkID

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

An identifier of a Fork, 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 ForkID[src]

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

Trait Implementations

impl Atomic for ForkID[src]

impl Clone for ForkID[src]

impl Copy for ForkID[src]

impl Debug for ForkID[src]

impl Eq for ForkID[src]

impl ExclusivelyContextual for ForkID[src]

impl From<NonZeroUsize> for ForkID[src]

impl Ord for ForkID[src]

impl PartialEq<ForkID> for ForkID[src]

impl PartialOrd<ForkID> for ForkID[src]

impl StructuralEq for ForkID[src]

impl StructuralPartialEq for ForkID[src]

Auto Trait Implementations

impl RefUnwindSafe for ForkID

impl Send for ForkID

impl Sync for ForkID

impl Unpin for ForkID

impl UnwindSafe for ForkID

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> Contextual for T where
    T: ExclusivelyContextual
[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>,