Skip to main content

ConstructedRealtimeExecution

Struct ConstructedRealtimeExecution 

Source
pub struct ConstructedRealtimeExecution<A, B, M>{ /* private fields */ }
Expand description

Constructed static execution and mechanisms, detached from mutable model state.

Implementations§

Source§

impl<A, B, M> ConstructedRealtimeExecution<A, B, M>

Source

pub const fn selected(&self) -> &SelectedRealtimeRealization

Returns the immutable selected realization.

Source

pub const fn execution( &self, ) -> &RealtimeLayerwiseRuntime<A, B, M::State, M::ResidentPolicy, M::BoundedPolicy>

Returns the selected resident or bounded runtime.

Source

pub fn execution_mut( &mut self, ) -> &mut RealtimeLayerwiseRuntime<A, B, M::State, M::ResidentPolicy, M::BoundedPolicy>

Mutably borrows the selected resident or bounded runtime.

Source

pub const fn mechanisms(&self) -> &M

Returns generic construction mechanisms for reports or later composition.

Source

pub fn mechanisms_mut(&mut self) -> &mut M

Mutably borrows generic construction mechanisms.

Source

pub fn into_parts( self, ) -> (SelectedRealtimeRealization, RealtimeLayerwiseRuntime<A, B, M::State, M::ResidentPolicy, M::BoundedPolicy>, M)

Decomposes selected construction for installation in the exact topology-specific neutral execution runtime.

Auto Trait Implementations§

§

impl<A, B, M> Freeze for ConstructedRealtimeExecution<A, B, M>

§

impl<A, B, M> RefUnwindSafe for ConstructedRealtimeExecution<A, B, M>

§

impl<A, B, M> Send for ConstructedRealtimeExecution<A, B, M>

§

impl<A, B, M> Sync for ConstructedRealtimeExecution<A, B, M>

§

impl<A, B, M> Unpin for ConstructedRealtimeExecution<A, B, M>

§

impl<A, B, M> UnsafeUnpin for ConstructedRealtimeExecution<A, B, M>

§

impl<A, B, M> UnwindSafe for ConstructedRealtimeExecution<A, B, M>

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?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> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
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.