[][src]Struct aces::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 Contextual for PortID[src]

impl PartialOrd<PortID> for PortID[src]

impl PartialEq<PortID> for PortID[src]

impl Copy for PortID[src]

impl Ord for PortID[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl Eq for PortID[src]

impl From<PortID> for NonZeroUsize[src]

impl Clone for PortID[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for PortID[src]

Auto Trait Implementations

impl Send for PortID

impl Unpin for PortID

impl Sync for PortID

impl UnwindSafe for PortID

impl RefUnwindSafe for PortID

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[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