pub enum Value {
Bit(bool),
Int {
size: BigUint,
val: BigInt,
},
UInt {
size: BigUint,
val: BigUint,
},
Concat(Vec<Value>),
Undef(BigUint),
}Variants§
Implementations§
Source§impl Value
impl Value
pub fn assume_int(&self) -> BigInt
pub fn assume_uint(&self) -> BigUint
pub fn as_string(&self) -> String
pub fn width(&self) -> BigUint
Sourcepub fn as_u64(&self) -> u64
pub fn as_u64(&self) -> u64
Computes the value as a 64. If the type this value represents is wider than 64 bits, the behaviour is undefined. If the value is value::Undef, 0 is returned
pub fn as_u32_chunks(&self) -> BigUint
Trait Implementations§
impl Eq for Value
impl StructuralPartialEq for Value
Auto Trait Implementations§
impl Freeze for Value
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
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