Skip to main content

supported_verbs

Function supported_verbs 

Source
pub fn supported_verbs() -> Vec<String>
Expand description

Every step name this build understands — the handshake’s answer to “what can you do”.

This must list every Step variant. A client is told to read it and degrade gracefully instead of guessing, so a verb missing here is a verb nobody sends — the executor runs it fine, but the handshake said it could not. every_step_variant_is_advertised is what keeps the two in step, and it is an exhaustive match so a new variant will not compile until it is added here.