frc_value/
traits.rs

1use crate::FrcValue;
2
3
4
5pub trait IntoFrcValue {
6    fn into_frc_value(self) -> FrcValue;
7}