pub enum Action<'a> {
Invoke {
module: Option<Cow<'a, str>>,
field: Cow<'a, str>,
args: Vec<Const<'a>>,
},
Get {
module: Option<Cow<'a, str>>,
field: Cow<'a, str>,
},
}Variants§
Trait Implementations§
Source§impl<'de: 'a, 'a> Deserialize<'de> for Action<'a>
impl<'de: 'a, 'a> Deserialize<'de> for Action<'a>
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<'a> Freeze for Action<'a>
impl<'a> RefUnwindSafe for Action<'a>
impl<'a> Send for Action<'a>
impl<'a> Sync for Action<'a>
impl<'a> Unpin for Action<'a>
impl<'a> UnwindSafe for Action<'a>
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