1
2
3
4
5
6
7
8
9
10
11
12
13
// This is free and unencumbered software released into the public domain.

use crate::Feature;

pub trait Usage: Feature {
    fn is_reference(&self) -> bool {
        false
    }

    fn is_variation(&self) -> bool {
        false
    }
}