pub enum InputValue {
Value(i64),
Z,
}Expand description
Represent a single input value
Variants§
Implementations§
Trait Implementations§
Source§impl Binary for InputValue
impl Binary for InputValue
Source§impl Clone for InputValue
impl Clone for InputValue
Source§fn clone(&self) -> InputValue
fn clone(&self) -> InputValue
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 Debug for InputValue
impl Debug for InputValue
Source§impl Display for InputValue
impl Display for InputValue
Source§impl From<i64> for InputValue
impl From<i64> for InputValue
Source§impl Hash for InputValue
impl Hash for InputValue
Source§impl PartialEq for InputValue
impl PartialEq for InputValue
impl Copy for InputValue
impl Eq for InputValue
impl StructuralPartialEq for InputValue
Auto Trait Implementations§
impl Freeze for InputValue
impl RefUnwindSafe for InputValue
impl Send for InputValue
impl Sync for InputValue
impl Unpin for InputValue
impl UnwindSafe for InputValue
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