pub trait IntoValue {
// Required method
fn into_value(self) -> Result<Value>;
}
Expand description
A Firestore value converter trait.
Required Methods§
Sourcefn into_value(self) -> Result<Value>
fn into_value(self) -> Result<Value>
Convert the value into a Firestore value.