pub trait AnnotationText {
// Required method
fn into_option_string(self) -> Option<String>;
}
Expand description
Something that can be converted to Option<String>
.
You probably shouldn’t implement this trait yourself, it’s here only
to simplify annotation creation syntax.