pub struct StartInterpretation {
pub interpretation_id: InterpretationId,
pub connection_id: ConnectionId,
pub external_session_id: Option<ExternalSessionId>,
pub dialect: DialectBinding,
pub limits: InterpretationLimits,
}Expand description
Request to start an interpretation on one connection output.
Fields§
§interpretation_id: InterpretationIdInterpretation identity.
connection_id: ConnectionIdConnection identity.
external_session_id: Option<ExternalSessionId>External session when present (propagated unchanged).
dialect: DialectBindingFrozen dialect binding from Connector open.
limits: InterpretationLimitsAssembly limits.
Trait Implementations§
Source§impl Clone for StartInterpretation
impl Clone for StartInterpretation
Source§fn clone(&self) -> StartInterpretation
fn clone(&self) -> StartInterpretation
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 moreAuto Trait Implementations§
impl Freeze for StartInterpretation
impl RefUnwindSafe for StartInterpretation
impl Send for StartInterpretation
impl Sync for StartInterpretation
impl Unpin for StartInterpretation
impl UnsafeUnpin for StartInterpretation
impl UnwindSafe for StartInterpretation
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