pub struct ScxmlModel {
pub fsm_names: HashMap<u16, String>,
pub parameters: HashMap<Channel, (PgId, PgId, usize)>,
pub int_queues: HashSet<Channel>,
pub ext_queues: HashMap<Channel, PgId>,
pub events: Vec<(String, Option<OmgTypeDef>)>,
pub ports: Vec<(String, OmgType, Vec<Type>)>,
pub assumes: Vec<String>,
pub guarantees: Vec<String>,
pub omg_types: OmgTypes,
}Fields§
§fsm_names: HashMap<u16, String>§parameters: HashMap<Channel, (PgId, PgId, usize)>§int_queues: HashSet<Channel>§ext_queues: HashMap<Channel, PgId>§events: Vec<(String, Option<OmgTypeDef>)>§ports: Vec<(String, OmgType, Vec<Type>)>§assumes: Vec<String>§guarantees: Vec<String>§omg_types: OmgTypesTrait Implementations§
Source§impl Clone for ScxmlModel
impl Clone for ScxmlModel
Source§fn clone(&self) -> ScxmlModel
fn clone(&self) -> ScxmlModel
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ScxmlModel
impl RefUnwindSafe for ScxmlModel
impl Send for ScxmlModel
impl Sync for ScxmlModel
impl Unpin for ScxmlModel
impl UnsafeUnpin for ScxmlModel
impl UnwindSafe for ScxmlModel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<'p, T> Seq<'p, T> for Twhere
T: Clone,
impl<'p, T> Seq<'p, T> for Twhere
T: Clone,
Source§impl<T, S> SpanWrap<S> for Twhere
S: WrappingSpan<T>,
impl<T, S> SpanWrap<S> for Twhere
S: WrappingSpan<T>,
Source§fn with_span(self, span: S) -> <S as WrappingSpan<Self>>::Spanned
fn with_span(self, span: S) -> <S as WrappingSpan<Self>>::Spanned
Invokes
WrappingSpan::make_wrapped to wrap an AST node in a span.