pub struct ExecRequest<'a> {
pub session_name: &'a str,
pub session_cfg: &'a SessionConfig,
pub sql: &'a str,
pub params: &'a [Value],
pub opts: &'a ResolvedOptions,
pub cancel_slot: Option<CancelSlot>,
pub transport_log: Option<TransportLogContext>,
}Fields§
§session_name: &'a str§session_cfg: &'a SessionConfig§sql: &'a str§params: &'a [Value]§opts: &'a ResolvedOptions§cancel_slot: Option<CancelSlot>§transport_log: Option<TransportLogContext>Auto Trait Implementations§
impl<'a> !RefUnwindSafe for ExecRequest<'a>
impl<'a> !UnwindSafe for ExecRequest<'a>
impl<'a> Freeze for ExecRequest<'a>
impl<'a> Send for ExecRequest<'a>
impl<'a> Sync for ExecRequest<'a>
impl<'a> Unpin for ExecRequest<'a>
impl<'a> UnsafeUnpin for ExecRequest<'a>
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