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.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".