[][src]Struct ascesis::PortID

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

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

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

Trait Implementations

impl Atomic for PortID[src]

impl Clone for PortID[src]

impl Copy for PortID[src]

impl Debug for PortID[src]

impl Eq for PortID[src]

impl ExclusivelyContextual for PortID[src]

impl From<NonZeroUsize> for PortID[src]

impl Hash for PortID[src]

impl Ord for PortID[src]

impl PartialEq<PortID> for PortID[src]

impl PartialOrd<PortID> for PortID[src]

impl StructuralEq for PortID[src]

impl StructuralPartialEq for PortID[src]

Auto Trait Implementations

impl RefUnwindSafe for PortID

impl Send for PortID

impl Sync for PortID

impl Unpin for PortID

impl UnwindSafe for PortID

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>,