pub struct ActionDescriptor {
pub kind: ActionKind,
pub params: Option<ParamsDescriptor>,
pub ok: Option<OkDescriptor>,
}Fields§
§kind: ActionKind§params: Option<ParamsDescriptor>§ok: Option<OkDescriptor>Trait Implementations§
Source§impl Clone for ActionDescriptor
impl Clone for ActionDescriptor
Source§fn clone(&self) -> ActionDescriptor
fn clone(&self) -> ActionDescriptor
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 ActionDescriptor
impl Debug for ActionDescriptor
Source§impl<'de> Deserialize<'de> for ActionDescriptor
impl<'de> Deserialize<'de> for ActionDescriptor
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ActionDescriptor
impl PartialEq for ActionDescriptor
Source§fn eq(&self, other: &ActionDescriptor) -> bool
fn eq(&self, other: &ActionDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ActionDescriptor
impl Serialize for ActionDescriptor
impl Eq for ActionDescriptor
impl StructuralPartialEq for ActionDescriptor
Auto Trait Implementations§
impl Freeze for ActionDescriptor
impl RefUnwindSafe for ActionDescriptor
impl Send for ActionDescriptor
impl Sync for ActionDescriptor
impl Unpin for ActionDescriptor
impl UnsafeUnpin for ActionDescriptor
impl UnwindSafe for ActionDescriptor
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