pub struct Row {
pub operation: Operation,
pub columns: HashMap<String, Value>,
pub finalized: bool,
}Fields§
§operation: Operation§columns: HashMap<String, Value>§finalized: boolImplementations§
Source§impl Row
impl Row
pub fn new() -> Self
pub fn set<T: ToValue>(&mut self, name: &str, value: T) -> &mut Self
pub fn set_bigint(&mut self, name: &str, value: &String) -> &mut Self
pub fn set_bigdecimal(&mut self, name: &str, value: &String) -> &mut Self
pub fn set_bigint_or_zero(&mut self, name: &str, value: &String) -> &mut Self
pub fn _mark_final(&mut self) -> &mut Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Row
impl RefUnwindSafe for Row
impl Send for Row
impl Sync for Row
impl Unpin for Row
impl UnwindSafe for Row
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