pub trait SystemMessageGoal {
// Required method
fn system_message_goal(&self) -> Cow<'_, str>;
}
Expand description
A trait that describes the system message goal for a given axis set. This is typically implemented for the entire enum and returns a single, static system message goal string for the entire type.
Required Methods§
Sourcefn system_message_goal(&self) -> Cow<'_, str>
fn system_message_goal(&self) -> Cow<'_, str>
Returns the system message goal associated with the entire enum.