pub trait Operator: Copy {
// Required method
fn operator_token() -> Self;
}
Expand description
Trait implemented by types representing abstract operators.
Required Methods§
sourcefn operator_token() -> Self
fn operator_token() -> Self
Returns the structure that identifies the operator.
Object Safety§
This trait is not object safe.