pub trait QuerySetItem: Sized {
// Required method
fn query_set_item<'a>(
&mut self,
query: &Query<'a>,
val: Self,
) -> SetResult<Self>;
}Expand description
Describe how to set a value from a query
Required Methods§
fn query_set_item<'a>( &mut self, query: &Query<'a>, val: Self, ) -> SetResult<Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
Source§impl QuerySetItem for Value
Available on crate feature json only.
impl QuerySetItem for Value
Available on crate feature
json only.