pub struct PreparedOperationBinding { /* private fields */ }Expand description
Runtime-created immutable binding for one prepared operation.
A1 has no public constructor. B0/C1 provide the runtime creation path.
§Examples
use std::fmt::Debug;
use tenferro_runtime::PreparedOperationBinding;
fn requires_debug<T: Debug>() {}
requires_debug::<PreparedOperationBinding>();Implementations§
Source§impl PreparedOperationBinding
impl PreparedOperationBinding
Sourcepub fn runtime_id(&self) -> RuntimeId
pub fn runtime_id(&self) -> RuntimeId
Return the runtime identity that created this binding.
§Examples
use std::fmt::Debug;
use tenferro_runtime::PreparedOperationBinding;
fn requires_debug<T: Debug>() {}
requires_debug::<PreparedOperationBinding>();Sourcepub fn epoch(&self) -> RuntimeEpoch
pub fn epoch(&self) -> RuntimeEpoch
Return the immutable runtime epoch that created this binding.
§Examples
use std::fmt::Debug;
use tenferro_runtime::PreparedOperationBinding;
fn requires_debug<T: Debug>() {}
requires_debug::<PreparedOperationBinding>();Sourcepub fn engine_id(&self) -> &EngineId
pub fn engine_id(&self) -> &EngineId
Return the selected engine identifier.
§Examples
use std::fmt::Debug;
use tenferro_runtime::PreparedOperationBinding;
fn requires_debug<T: Debug>() {}
requires_debug::<PreparedOperationBinding>();Sourcepub fn registration_identity(&self) -> RegistrationIdentity
pub fn registration_identity(&self) -> RegistrationIdentity
Return the runtime-local engine registration identity.
§Examples
use std::fmt::Debug;
use tenferro_runtime::PreparedOperationBinding;
fn requires_debug<T: Debug>() {}
requires_debug::<PreparedOperationBinding>();Sourcepub fn context_identity(&self) -> ExecutionContextIdentity
pub fn context_identity(&self) -> ExecutionContextIdentity
Return the execution-context type identity.
§Examples
use std::fmt::Debug;
use tenferro_runtime::PreparedOperationBinding;
fn requires_debug<T: Debug>() {}
requires_debug::<PreparedOperationBinding>();Sourcepub fn hardware_class(&self) -> &HardwareClassId
pub fn hardware_class(&self) -> &HardwareClassId
Return the selected hardware-class identifier.
§Examples
use std::fmt::Debug;
use tenferro_runtime::PreparedOperationBinding;
fn requires_debug<T: Debug>() {}
requires_debug::<PreparedOperationBinding>();Trait Implementations§
Source§impl Clone for PreparedOperationBinding
impl Clone for PreparedOperationBinding
Source§fn clone(&self) -> PreparedOperationBinding
fn clone(&self) -> PreparedOperationBinding
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 moreSource§impl Debug for PreparedOperationBinding
impl Debug for PreparedOperationBinding
Source§impl Hash for PreparedOperationBinding
impl Hash for PreparedOperationBinding
Source§impl PartialEq for PreparedOperationBinding
impl PartialEq for PreparedOperationBinding
Source§fn eq(&self, other: &PreparedOperationBinding) -> bool
fn eq(&self, other: &PreparedOperationBinding) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PreparedOperationBinding
impl StructuralPartialEq for PreparedOperationBinding
Auto Trait Implementations§
impl Freeze for PreparedOperationBinding
impl RefUnwindSafe for PreparedOperationBinding
impl Send for PreparedOperationBinding
impl Sync for PreparedOperationBinding
impl Unpin for PreparedOperationBinding
impl UnsafeUnpin for PreparedOperationBinding
impl UnwindSafe for PreparedOperationBinding
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more