pub struct ExtractionAction {
pub action_type: String,
pub target: String,
pub value: Option<String>,
pub wait_after_ms: u32,
}
Fields§
§action_type: String
§target: String
§value: Option<String>
§wait_after_ms: u32
Trait Implementations§
Source§impl Clone for ExtractionAction
impl Clone for ExtractionAction
Source§fn clone(&self) -> ExtractionAction
fn clone(&self) -> ExtractionAction
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 ExtractionAction
impl Debug for ExtractionAction
Source§impl<'de> Deserialize<'de> for ExtractionAction
impl<'de> Deserialize<'de> for ExtractionAction
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 ExtractionAction
impl RefUnwindSafe for ExtractionAction
impl Send for ExtractionAction
impl Sync for ExtractionAction
impl Unpin for ExtractionAction
impl UnwindSafe for ExtractionAction
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