pub struct Operation<T, V> {
pub column: T,
pub value: V,
}
Expand description
An operation on a column
Fields§
§column: T
§value: V
Trait Implementations§
Source§impl<'de, T, V> Deserialize<'de> for Operation<T, V>where
T: Deserialize<'de>,
V: Deserialize<'de>,
impl<'de, T, V> Deserialize<'de> for Operation<T, V>where
T: Deserialize<'de>,
V: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<T, V> Freeze for Operation<T, V>
impl<T, V> RefUnwindSafe for Operation<T, V>where
T: RefUnwindSafe,
V: RefUnwindSafe,
impl<T, V> Send for Operation<T, V>
impl<T, V> Sync for Operation<T, V>
impl<T, V> Unpin for Operation<T, V>
impl<T, V> UnwindSafe for Operation<T, V>where
T: UnwindSafe,
V: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more