pub enum UseCaseDefBodyElement {
Show 21 variants
Error(Node<ParseErrorNode>),
Other(String),
Annotation(Node<Annotation>),
MetadataKeywordUsage(Node<MetadataKeywordUsage>),
AttributeDef(Node<AttributeDef>),
Doc(Node<DocComment>),
SubjectDecl(Node<SubjectDecl>),
SubjectRef(Node<SubjectRef>),
ActorUsage(Node<ActorUsage>),
ActorRedefinitionAssignment(Node<ActorRedefinitionAssignment>),
Objective(Node<Objective>),
FirstSuccession(Node<FirstSuccession>),
ThenIncludeUseCase(Node<ThenIncludeUseCase>),
ThenUseCaseUsage(Node<ThenUseCaseUsage>),
ThenDone(Node<ThenDone>),
IncludeUseCase(Node<IncludeUseCase>),
RefRedefinition(Node<RefRedefinition>),
ReturnRef(Node<ReturnRef>),
Assign(Node<AssignStmt>),
ForLoop(Node<ForLoop>),
ThenAction(Node<ThenAction>),
}Variants§
Error(Node<ParseErrorNode>)
Other(String)
Unmodeled use-case / analysis-case body element captured as raw text (used for library parsing).
Annotation(Node<Annotation>)
MetadataKeywordUsage(Node<MetadataKeywordUsage>)
AttributeDef(Node<AttributeDef>)
Doc(Node<DocComment>)
SubjectDecl(Node<SubjectDecl>)
SubjectRef(Node<SubjectRef>)
subject; shorthand.
ActorUsage(Node<ActorUsage>)
ActorRedefinitionAssignment(Node<ActorRedefinitionAssignment>)
Objective(Node<Objective>)
FirstSuccession(Node<FirstSuccession>)
ThenIncludeUseCase(Node<ThenIncludeUseCase>)
ThenUseCaseUsage(Node<ThenUseCaseUsage>)
ThenDone(Node<ThenDone>)
IncludeUseCase(Node<IncludeUseCase>)
RefRedefinition(Node<RefRedefinition>)
ReturnRef(Node<ReturnRef>)
Assign(Node<AssignStmt>)
ForLoop(Node<ForLoop>)
ThenAction(Node<ThenAction>)
Trait Implementations§
Source§impl Clone for UseCaseDefBodyElement
impl Clone for UseCaseDefBodyElement
Source§fn clone(&self) -> UseCaseDefBodyElement
fn clone(&self) -> UseCaseDefBodyElement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UseCaseDefBodyElement
impl Debug for UseCaseDefBodyElement
impl Eq for UseCaseDefBodyElement
Source§impl PartialEq for UseCaseDefBodyElement
impl PartialEq for UseCaseDefBodyElement
Source§fn eq(&self, other: &UseCaseDefBodyElement) -> bool
fn eq(&self, other: &UseCaseDefBodyElement) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UseCaseDefBodyElement
Auto Trait Implementations§
impl Freeze for UseCaseDefBodyElement
impl RefUnwindSafe for UseCaseDefBodyElement
impl Send for UseCaseDefBodyElement
impl Sync for UseCaseDefBodyElement
impl Unpin for UseCaseDefBodyElement
impl UnsafeUnpin for UseCaseDefBodyElement
impl UnwindSafe for UseCaseDefBodyElement
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