1// This is free and unencumbered software released into the public domain. 2 3use crate::Feature; 4 5pub trait Usage: Feature { 6 fn is_reference(&self) -> bool { 7 false 8 } 9 10 fn is_variation(&self) -> bool { 11 false 12 } 13}