pub struct Statement<P: ParamBinding, C: ColBinding> { /* private fields */ }Implementations§
Source§impl<P: ParamBinding, C: Default + Copy + Serialize> Statement<P, RowSet<C>>
impl<P: ParamBinding, C: Default + Copy + Serialize> Statement<P, RowSet<C>>
pub fn with_fetch_size( conn: &Connection, stmt_str: &str, fetch_size: usize, ) -> Result<Self>
pub fn fetch_size(&self) -> usize
pub fn set_fetch_size(&mut self, size: usize)
Trait Implementations§
Auto Trait Implementations§
impl<P, C> Freeze for Statement<P, C>
impl<P, C> RefUnwindSafe for Statement<P, C>where
P: RefUnwindSafe,
C: RefUnwindSafe,
impl<P, C> !Send for Statement<P, C>
impl<P, C> !Sync for Statement<P, C>
impl<P, C> Unpin for Statement<P, C>
impl<P, C> UnwindSafe for Statement<P, C>where
P: UnwindSafe,
C: 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