pub struct ActionRelationship {
pub name: String,
pub description: Option<String>,
pub relating_action: ActionRef,
pub related_action: ActionRef,
}Fields§
§name: String§description: Option<String>§relating_action: ActionRefTrait Implementations§
Source§impl Clone for ActionRelationship
impl Clone for ActionRelationship
Source§fn clone(&self) -> ActionRelationship
fn clone(&self) -> ActionRelationship
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 ActionRelationship
impl Debug for ActionRelationship
Source§impl PartialEq for ActionRelationship
impl PartialEq for ActionRelationship
Source§fn eq(&self, other: &ActionRelationship) -> bool
fn eq(&self, other: &ActionRelationship) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ActionRelationship
Auto Trait Implementations§
impl Freeze for ActionRelationship
impl RefUnwindSafe for ActionRelationship
impl Send for ActionRelationship
impl Sync for ActionRelationship
impl Unpin for ActionRelationship
impl UnsafeUnpin for ActionRelationship
impl UnwindSafe for ActionRelationship
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