pub struct OperationResult<'c, 'a> { /* private fields */ }Expand description
An operation result.
Implementations§
Source§impl<'c> OperationResult<'c, '_>
impl<'c> OperationResult<'c, '_>
Sourcepub fn result_number(&self) -> usize
pub fn result_number(&self) -> usize
Returns a result number.
Sourcepub fn owner(&self) -> OperationRef<'c, '_>
pub fn owner(&self) -> OperationRef<'c, '_>
Returns an owner operation.
Trait Implementations§
Source§impl<'c, 'a> Clone for OperationResult<'c, 'a>
impl<'c, 'a> Clone for OperationResult<'c, 'a>
Source§fn clone(&self) -> OperationResult<'c, 'a>
fn clone(&self) -> OperationResult<'c, 'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'c, 'a> Debug for OperationResult<'c, 'a>
impl<'c, 'a> Debug for OperationResult<'c, 'a>
Source§impl Display for OperationResult<'_, '_>
impl Display for OperationResult<'_, '_>
Source§impl<'c, 'a> From<OperationResult<'c, 'a>> for Value<'c, 'a>
impl<'c, 'a> From<OperationResult<'c, 'a>> for Value<'c, 'a>
Source§fn from(value: OperationResult<'c, 'a>) -> Self
fn from(value: OperationResult<'c, 'a>) -> Self
Converts to this type from the input type.
Source§impl<'c, 'a> TryFrom<Value<'c, 'a>> for OperationResult<'c, 'a>
impl<'c, 'a> TryFrom<Value<'c, 'a>> for OperationResult<'c, 'a>
Source§impl<'c> ValueLike<'c> for OperationResult<'c, '_>
impl<'c> ValueLike<'c> for OperationResult<'c, '_>
Source§fn is_block_argument(&self) -> bool
fn is_block_argument(&self) -> bool
Returns
true if a value is a block argument.Source§fn is_operation_result(&self) -> bool
fn is_operation_result(&self) -> bool
Returns
true if a value is an operation result.impl<'c, 'a> Copy for OperationResult<'c, 'a>
Auto Trait Implementations§
impl<'c, 'a> Freeze for OperationResult<'c, 'a>
impl<'c, 'a> RefUnwindSafe for OperationResult<'c, 'a>
impl<'c, 'a> !Send for OperationResult<'c, 'a>
impl<'c, 'a> !Sync for OperationResult<'c, 'a>
impl<'c, 'a> Unpin for OperationResult<'c, 'a>
impl<'c, 'a> UnsafeUnpin for OperationResult<'c, 'a>
impl<'c, 'a> UnwindSafe for OperationResult<'c, '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