pub struct ExecuteOptions { /* private fields */ }Expand description
Optional execute modes (reference ExecuteMessage attributes).
Implementations§
Source§impl ExecuteOptions
impl ExecuteOptions
pub fn batcherrors(&self) -> bool
pub fn with_batcherrors(self, enabled: bool) -> Self
pub fn arraydmlrowcounts(&self) -> bool
pub fn with_arraydmlrowcounts(self, enabled: bool) -> Self
pub fn parse_only(&self) -> bool
pub fn with_parse_only(self, enabled: bool) -> Self
pub fn token_num(&self) -> u64
pub fn with_token_num(self, token_num: u64) -> Self
pub fn cursor_id(&self) -> u32
pub fn with_cursor_id(self, cursor_id: u32) -> Self
pub fn cache_statement(&self) -> bool
pub fn with_cache_statement(self, enabled: bool) -> Self
pub fn scrollable(&self) -> bool
pub fn with_scrollable(self, enabled: bool) -> Self
pub fn fetch_orientation(&self) -> u32
pub fn with_fetch_orientation(self, fetch_orientation: u32) -> Self
pub fn fetch_pos(&self) -> u32
pub fn with_fetch_pos(self, fetch_pos: u32) -> Self
pub fn scroll_operation(&self) -> bool
pub fn with_scroll_operation(self, enabled: bool) -> Self
pub fn suspend_on_success(&self) -> bool
pub fn with_suspend_on_success(self, enabled: bool) -> Self
pub fn no_prefetch(&self) -> bool
pub fn with_no_prefetch(self, enabled: bool) -> Self
pub fn registration_id(&self) -> u64
pub fn with_registration_id(self, registration_id: u64) -> Self
pub fn max_string_size(&self) -> u32
pub fn with_max_string_size(self, max_string_size: u32) -> Self
Trait Implementations§
Source§impl Clone for ExecuteOptions
impl Clone for ExecuteOptions
Source§fn clone(&self) -> ExecuteOptions
fn clone(&self) -> ExecuteOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ExecuteOptions
Source§impl Debug for ExecuteOptions
impl Debug for ExecuteOptions
Source§impl Default for ExecuteOptions
impl Default for ExecuteOptions
impl Eq for ExecuteOptions
Source§impl PartialEq for ExecuteOptions
impl PartialEq for ExecuteOptions
Source§fn eq(&self, other: &ExecuteOptions) -> bool
fn eq(&self, other: &ExecuteOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExecuteOptions
Auto Trait Implementations§
impl Freeze for ExecuteOptions
impl RefUnwindSafe for ExecuteOptions
impl Send for ExecuteOptions
impl Sync for ExecuteOptions
impl Unpin for ExecuteOptions
impl UnsafeUnpin for ExecuteOptions
impl UnwindSafe for ExecuteOptions
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