Trait QuerySetItem

Source
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§

Source

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

Source§

fn query_set_item<'a>( &mut self, query: &Query<'a>, val: Self, ) -> SetResult<Self>

Implementors§