pub struct ActionInfo {
pub regex: String,
pub priority: i32,
pub description: String,
pub sync: bool,
pub by_ref: bool,
}Expand description
Action 信息(用于调试和监控)
Fields§
§regex: String§priority: i32§description: String§sync: bool§by_ref: boolTrait Implementations§
Source§impl Clone for ActionInfo
impl Clone for ActionInfo
Source§fn clone(&self) -> ActionInfo
fn clone(&self) -> ActionInfo
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 moreAuto Trait Implementations§
impl Freeze for ActionInfo
impl RefUnwindSafe for ActionInfo
impl Send for ActionInfo
impl Sync for ActionInfo
impl Unpin for ActionInfo
impl UnwindSafe for ActionInfo
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