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