pub struct VerbEntry {
pub maestro_name: &'static str,
pub smix_name: &'static str,
pub category: VerbCategory,
pub arg_shape: ArgShape,
}Expand description
One verb in the canonical table.
Fields§
§maestro_name: &'static strMaestro yaml surface name (tapOn, assertVisible, …).
smix_name: &'static strsmix-canonical surface name (tap, expect, …).
category: VerbCategoryGrouping category. Used by the future cross-platform parity audit table (Phase F).
arg_shape: ArgShapeShape of the argument — informational; used by codemod’s argument transform lookup + parser’s shape validation.
Trait Implementations§
impl Copy for VerbEntry
impl Eq for VerbEntry
impl StructuralPartialEq for VerbEntry
Auto Trait Implementations§
impl Freeze for VerbEntry
impl RefUnwindSafe for VerbEntry
impl Send for VerbEntry
impl Sync for VerbEntry
impl Unpin for VerbEntry
impl UnsafeUnpin for VerbEntry
impl UnwindSafe for VerbEntry
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