pub struct ReturnRef {
pub name: String,
pub multiplicity: Option<String>,
pub body: String,
}Expand description
return ref <name><multiplicity?> { ... } used in SysML v2 release libraries.
Fields§
§name: String§multiplicity: Option<String>§body: StringRaw body text for now (balanced { ... } including nested braces).
Trait Implementations§
impl Eq for ReturnRef
impl StructuralPartialEq for ReturnRef
Auto Trait Implementations§
impl Freeze for ReturnRef
impl RefUnwindSafe for ReturnRef
impl Send for ReturnRef
impl Sync for ReturnRef
impl Unpin for ReturnRef
impl UnsafeUnpin for ReturnRef
impl UnwindSafe for ReturnRef
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