pub struct NormalizedAction {
pub tool: String,
pub params: HashMap<String, NormalizedParam>,
}Expand description
A single normalized action
Fields§
§tool: String§params: HashMap<String, NormalizedParam>Trait Implementations§
Source§impl Clone for NormalizedAction
impl Clone for NormalizedAction
Source§fn clone(&self) -> NormalizedAction
fn clone(&self) -> NormalizedAction
Returns a duplicate of the value. Read more
1.0.0 · 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 NormalizedAction
impl Debug for NormalizedAction
Source§impl<'de> Deserialize<'de> for NormalizedAction
impl<'de> Deserialize<'de> for NormalizedAction
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
Auto Trait Implementations§
impl Freeze for NormalizedAction
impl RefUnwindSafe for NormalizedAction
impl Send for NormalizedAction
impl Sync for NormalizedAction
impl Unpin for NormalizedAction
impl UnsafeUnpin for NormalizedAction
impl UnwindSafe for NormalizedAction
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