Skip to main content

Ordered

Struct Ordered 

Source
pub struct Ordered<const N: usize, const SHAPE: u32> { /* private fields */ }
Expand description

A Topology whose nodes are topologically sorted by their deps: edges.

Implementations§

Source§

impl<const N: usize, const SHAPE: u32> Ordered<N, SHAPE>

Source

pub const fn new(deps: &'static [&'static [u8]; N]) -> Self

Build a topology from a static array of dependency lists.

Trait Implementations§

Source§

impl<const N: usize, const SHAPE: u32> Topology<N> for Ordered<N, SHAPE>

Source§

const SHAPE: u32 = SHAPE

Structural-fact bits (see shape). An unset bit promises the structure is absent from the whole graph.
Source§

fn deps_of(&self, i: u8) -> &'static [u8]

The dependency indices of slot i — what node i declared it needs spawned first. Spawn ordering, not runtime coupling: see the crate docs on what a deps: edge does and does not assert.
Source§

fn order_at(&self, k: usize) -> u8

Return the slot index at topological position k (0..N).

Auto Trait Implementations§

§

impl<const N: usize, const SHAPE: u32> Freeze for Ordered<N, SHAPE>
where &'static [&'static [u8]; N]: Freeze, [u8; N]: Freeze,

§

impl<const N: usize, const SHAPE: u32> RefUnwindSafe for Ordered<N, SHAPE>
where &'static [&'static [u8]; N]: RefUnwindSafe, [u8; N]: RefUnwindSafe,

§

impl<const N: usize, const SHAPE: u32> Send for Ordered<N, SHAPE>
where &'static [&'static [u8]; N]: Send, [u8; N]: Send,

§

impl<const N: usize, const SHAPE: u32> Sync for Ordered<N, SHAPE>
where &'static [&'static [u8]; N]: Sync, [u8; N]: Sync,

§

impl<const N: usize, const SHAPE: u32> Unpin for Ordered<N, SHAPE>
where &'static [&'static [u8]; N]: Unpin, [u8; N]: Unpin,

§

impl<const N: usize, const SHAPE: u32> UnsafeUnpin for Ordered<N, SHAPE>
where &'static [&'static [u8]; N]: UnsafeUnpin, [u8; N]: UnsafeUnpin,

§

impl<const N: usize, const SHAPE: u32> UnwindSafe for Ordered<N, SHAPE>
where &'static [&'static [u8]; N]: UnwindSafe, [u8; N]: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CouplingPoint for T
where T: Sync + ?Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.