Struct momba_explore::Transition[][src]

pub struct Transition<'e, T: TimeType> { /* fields omitted */ }

A transition of an automaton network.

Implementations

impl<'e, T: TimeType> Transition<'e, T>[src]

pub fn local_actions(&self) -> &[Action][src]

Returns a slice of actions the participating automata perform.

pub fn edges(&self) -> Vec<EdgeReference>[src]

Returns a vector of indices of the participating automata.

pub fn valuations(&self) -> &T::Valuations[src]

Returns the clock valuations for which the transition is performed.

pub fn result_action(&self) -> &Action[src]

Returns the resulting action.

pub fn replace_valuations(self, valuations: T::Valuations) -> Self[src]

Replaces the valuations of the transition.

pub fn edge_references(&self) -> Vec<EdgeReference>[src]

Auto Trait Implementations

impl<'e, T> !RefUnwindSafe for Transition<'e, T>

impl<'e, T> Send for Transition<'e, T> where
    <T as TimeType>::CompiledClocks: Sync,
    <T as TimeType>::CompiledDifference: Sync,
    <T as TimeType>::Valuations: Send

impl<'e, T> Sync for Transition<'e, T> where
    <T as TimeType>::CompiledClocks: Sync,
    <T as TimeType>::CompiledDifference: Sync,
    <T as TimeType>::Valuations: Sync

impl<'e, T> Unpin for Transition<'e, T> where
    <T as TimeType>::Valuations: Unpin

impl<'e, T> !UnwindSafe for Transition<'e, T>

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<T> From<T> for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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>,