pub struct Bindings { /* private fields */ }Implementations§
Source§impl Bindings
impl Bindings
pub fn index(&self, variable: VariableIdentifier) -> Option<&IndexDescriptor>
pub fn value(&self, variable: VariableIdentifier) -> Option<&ValueDescriptor>
pub fn shape( &self, variable: VariableIdentifier, ) -> Option<&LaneShapeDescriptor>
pub fn order(&self, variable: VariableIdentifier) -> Option<OrderDescriptor>
pub fn arity(&self, variable: VariableIdentifier) -> Option<ArityDescriptor>
pub fn operand( &self, variable: VariableIdentifier, ) -> Option<&OperandDescriptor>
pub const fn argument_retention(&self) -> RetentionDescriptor
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Bindings
impl RefUnwindSafe for Bindings
impl Send for Bindings
impl Sync for Bindings
impl Unpin for Bindings
impl UnsafeUnpin for Bindings
impl UnwindSafe for Bindings
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,
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