pub struct ActionMatch {
pub info: CompletionInfo,
pub qualified_path: String,
}
Expand description
Match string and qualified name of action.
Fields§
§info: CompletionInfo
The match str, space delimited from current path.
Notice the extra space at the end. This is intentional.
eg "a nested action "
.
qualified_path: String
Qualified action name from root, as produced from structure
.
eg a.nested..action
Trait Implementations§
Source§impl Debug for ActionMatch
impl Debug for ActionMatch
Source§impl PartialEq for ActionMatch
impl PartialEq for ActionMatch
impl StructuralPartialEq for ActionMatch
Auto Trait Implementations§
impl Freeze for ActionMatch
impl RefUnwindSafe for ActionMatch
impl Send for ActionMatch
impl Sync for ActionMatch
impl Unpin for ActionMatch
impl UnwindSafe for ActionMatch
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