pub struct BatchUpdateSpec {
pub table: &'static str,
pub key_col: &'static str,
pub key_vals: Vec<SqlValue>,
pub patch: Row,
}Expand description
batch_update 规格
MAJ-5:table 和 key_col 改为 &'static str(编译期常量)
Fields§
§table: &'static str§key_col: &'static str§key_vals: Vec<SqlValue>§patch: RowTrait Implementations§
Source§impl Clone for BatchUpdateSpec
impl Clone for BatchUpdateSpec
Auto Trait Implementations§
impl Freeze for BatchUpdateSpec
impl RefUnwindSafe for BatchUpdateSpec
impl Send for BatchUpdateSpec
impl Sync for BatchUpdateSpec
impl Unpin for BatchUpdateSpec
impl UnsafeUnpin for BatchUpdateSpec
impl UnwindSafe for BatchUpdateSpec
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