pub struct ApplicationExpressionRecord<H: HostTypes> {
pub expression_operator_handle: OperationHandle<H>,
/* private fields */
}Expand description
Phase 8 (orphan-closure) — typed record for ApplicationExpression<H>.
Carries a field per functional accessor of the trait. Object
fields hold {Range}Handle<H>; iterate via the Resolved wrapper
chain-resolver methods.
Fields§
§expression_operator_handle: OperationHandle<H>Trait Implementations§
Source§impl<H: Clone + HostTypes> Clone for ApplicationExpressionRecord<H>
impl<H: Clone + HostTypes> Clone for ApplicationExpressionRecord<H>
Source§fn clone(&self) -> ApplicationExpressionRecord<H>
fn clone(&self) -> ApplicationExpressionRecord<H>
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<H: PartialEq + HostTypes> PartialEq for ApplicationExpressionRecord<H>
impl<H: PartialEq + HostTypes> PartialEq for ApplicationExpressionRecord<H>
Source§fn eq(&self, other: &ApplicationExpressionRecord<H>) -> bool
fn eq(&self, other: &ApplicationExpressionRecord<H>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<H: Eq + HostTypes> Eq for ApplicationExpressionRecord<H>
impl<H: HostTypes> StructuralPartialEq for ApplicationExpressionRecord<H>
Auto Trait Implementations§
impl<H> Freeze for ApplicationExpressionRecord<H>
impl<H> RefUnwindSafe for ApplicationExpressionRecord<H>where
H: RefUnwindSafe,
impl<H> Send for ApplicationExpressionRecord<H>where
H: Send,
impl<H> Sync for ApplicationExpressionRecord<H>where
H: Sync,
impl<H> Unpin for ApplicationExpressionRecord<H>where
H: Unpin,
impl<H> UnsafeUnpin for ApplicationExpressionRecord<H>
impl<H> UnwindSafe for ApplicationExpressionRecord<H>where
H: UnwindSafe,
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