pub trait IntoValue {
    // Required method
    fn into_value(self) -> Result<Value>;
}
Expand description

A Firestore value converter trait.

Required Methods§

source

fn into_value(self) -> Result<Value>

Convert the value into a Firestore value.

Implementations on Foreign Types§

source§

impl IntoValue for Value

Implementors§