pub struct UseCaseDef {
pub identification: Identification,
pub specializes: Option<String>,
pub specializes_span: Option<Span>,
pub body: UseCaseDefBody,
}Expand description
Use Case definition: use case def Identification body.
Fields§
§identification: Identification§specializes: Option<String>§specializes_span: Option<Span>§body: UseCaseDefBodyTrait Implementations§
Source§impl Clone for UseCaseDef
impl Clone for UseCaseDef
Source§fn clone(&self) -> UseCaseDef
fn clone(&self) -> UseCaseDef
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 UseCaseDef
impl Debug for UseCaseDef
impl Eq for UseCaseDef
Source§impl PartialEq for UseCaseDef
impl PartialEq for UseCaseDef
Source§fn eq(&self, other: &UseCaseDef) -> bool
fn eq(&self, other: &UseCaseDef) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UseCaseDef
Auto Trait Implementations§
impl Freeze for UseCaseDef
impl RefUnwindSafe for UseCaseDef
impl Send for UseCaseDef
impl Sync for UseCaseDef
impl Unpin for UseCaseDef
impl UnsafeUnpin for UseCaseDef
impl UnwindSafe for UseCaseDef
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