pub struct ActorRedefinitionAssignment {
pub name: String,
pub rhs: String,
}Expand description
actor :>> <name> = <expr>; redefinition/assignment used in SysML v2 release fixtures.
Fields§
§name: String§rhs: StringRaw RHS expression text up to ; (we don’t model the expression grammar here yet).
Trait Implementations§
Source§impl Clone for ActorRedefinitionAssignment
impl Clone for ActorRedefinitionAssignment
Source§fn clone(&self) -> ActorRedefinitionAssignment
fn clone(&self) -> ActorRedefinitionAssignment
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 ActorRedefinitionAssignment
impl Debug for ActorRedefinitionAssignment
impl Eq for ActorRedefinitionAssignment
Source§impl PartialEq for ActorRedefinitionAssignment
impl PartialEq for ActorRedefinitionAssignment
Source§fn eq(&self, other: &ActorRedefinitionAssignment) -> bool
fn eq(&self, other: &ActorRedefinitionAssignment) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ActorRedefinitionAssignment
Auto Trait Implementations§
impl Freeze for ActorRedefinitionAssignment
impl RefUnwindSafe for ActorRedefinitionAssignment
impl Send for ActorRedefinitionAssignment
impl Sync for ActorRedefinitionAssignment
impl Unpin for ActorRedefinitionAssignment
impl UnsafeUnpin for ActorRedefinitionAssignment
impl UnwindSafe for ActorRedefinitionAssignment
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