[][src]Struct esl01_dag::id::Id

pub struct Id(pub u64);

An integer Id representing a node in the graph. Ids are topologically sorted.

Methods

impl Id[src]

pub fn group(self) -> Group[src]

The Group of an Id.

pub fn to(self, other: Id) -> IdIter[src]

Similar to self..=other.

pub fn to_bytearray(self) -> [u8; 8][src]

Convert to a byte array. Useful for indexedlog range query.

pub const MAX: Self[src]

pub const MIN: Self[src]

Trait Implementations

impl Add<u64> for Id[src]

type Output = Id

The resulting type after applying the + operator.

impl Clone for Id[src]

impl Copy for Id[src]

impl Debug for Id[src]

impl Display for Id[src]

impl Eq for Id[src]

impl From<Id> for Span[src]

impl Hash for Id[src]

impl Ord for Id[src]

impl PartialEq<Id> for Id[src]

impl PartialOrd<Id> for Id[src]

impl StructuralEq for Id[src]

impl StructuralPartialEq for Id[src]

impl Sub<u64> for Id[src]

type Output = Id

The resulting type after applying the - operator.

Auto Trait Implementations

impl RefUnwindSafe for Id

impl Send for Id

impl Sync for Id

impl Unpin for Id

impl UnwindSafe for Id

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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> ToString for T where
    T: Display + ?Sized
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,