Skip to main content

Flat

Struct Flat 

Source
pub struct Flat<const SHAPE: u32>;
Expand description

The Topology of a graph with no deps: edges anywhere: zero-sized, every dep list is empty by type, and the topological order is declaration order. The walks a Supervisor runs over it fold to plain index loops, and the dependency cascades (activate, deactivate, restart) collapse to their seed sets.

Implementations§

Source§

impl<const SHAPE: u32> Flat<SHAPE>

Source

pub const fn new() -> Self

The (zero-sized) flat topology.

Trait Implementations§

Source§

impl<const SHAPE: u32> Default for Flat<SHAPE>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<const N: usize, const SHAPE: u32> Topology<N> for Flat<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 SHAPE: u32> Freeze for Flat<SHAPE>

§

impl<const SHAPE: u32> RefUnwindSafe for Flat<SHAPE>

§

impl<const SHAPE: u32> Send for Flat<SHAPE>

§

impl<const SHAPE: u32> Sync for Flat<SHAPE>

§

impl<const SHAPE: u32> Unpin for Flat<SHAPE>

§

impl<const SHAPE: u32> UnsafeUnpin for Flat<SHAPE>

§

impl<const SHAPE: u32> UnwindSafe for Flat<SHAPE>

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.