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