pub struct MaxUIOperation<'c> { /* private fields */ }Expand description
A maxui operation. Unsigned integer maximum operation.
Implementations§
Source§impl<'c> MaxUIOperation<'c>
impl<'c> MaxUIOperation<'c>
Sourcepub fn as_operation(&self) -> &Operation<'c>
pub fn as_operation(&self) -> &Operation<'c>
Returns a generic operation.
Sourcepub fn builder(
context: &'c Context,
location: Location<'c>,
) -> MaxUIOperationBuilder<'c, Unset, Unset>
pub fn builder( context: &'c Context, location: Location<'c>, ) -> MaxUIOperationBuilder<'c, Unset, Unset>
Creates a builder.
pub fn result(&self) -> Result<OperationResult<'c, '_>, Error>
pub fn lhs(&self) -> Result<Value<'c, '_>, Error>
pub fn rhs(&self) -> Result<Value<'c, '_>, Error>
Trait Implementations§
Source§impl<'c> Clone for MaxUIOperation<'c>
impl<'c> Clone for MaxUIOperation<'c>
Source§fn clone(&self) -> MaxUIOperation<'c>
fn clone(&self) -> MaxUIOperation<'c>
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> Debug for MaxUIOperation<'c>
impl<'c> Debug for MaxUIOperation<'c>
Source§impl<'b> From<MaxUIOperation<'b>> for ArithDialectOperation<'b>
impl<'b> From<MaxUIOperation<'b>> for ArithDialectOperation<'b>
Source§fn from(op: MaxUIOperation<'b>) -> Self
fn from(op: MaxUIOperation<'b>) -> Self
Converts to this type from the input type.
Source§impl<'c> From<MaxUIOperation<'c>> for Operation<'c>
impl<'c> From<MaxUIOperation<'c>> for Operation<'c>
Source§fn from(operation: MaxUIOperation<'c>) -> Self
fn from(operation: MaxUIOperation<'c>) -> Self
Converts to this type from the input type.
Source§impl<'c> PartialEq for MaxUIOperation<'c>
impl<'c> PartialEq for MaxUIOperation<'c>
Source§impl<'c> TryFrom<Operation<'c>> for MaxUIOperation<'c>
impl<'c> TryFrom<Operation<'c>> for MaxUIOperation<'c>
impl<'c> Eq for MaxUIOperation<'c>
impl<'c> StructuralPartialEq for MaxUIOperation<'c>
Auto Trait Implementations§
impl<'c> Freeze for MaxUIOperation<'c>
impl<'c> RefUnwindSafe for MaxUIOperation<'c>
impl<'c> !Send for MaxUIOperation<'c>
impl<'c> !Sync for MaxUIOperation<'c>
impl<'c> Unpin for MaxUIOperation<'c>
impl<'c> UnwindSafe for MaxUIOperation<'c>
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