coda_api/ext/
value_format_provider.rs

1use crate::types::ValueFormat;
2
3pub trait ValueFormatProvider {
4    fn value_format() -> ValueFormat;
5}