Trait dittolive_ditto::store::query_builder::MutableValue
source · pub trait MutableValue<'doc>: Sized {
type BaseType: DeserializeOwned;
// Required method
fn mutable_version(
base: Self::BaseType,
document: &'doc mut Document,
path: Box,
) -> Result<Self>;
}
Expand description
This trait describes a Ditto type for which modifications do not follow the regular assignment policy.
Required Associated Types§
Required Methods§
fn mutable_version( base: Self::BaseType, document: &'doc mut Document, path: Box, ) -> Result<Self>
Object Safety§
This trait is not object safe.