[−][src]Struct ergo_lib::chain::ergo_box::BoxValue
Box value in nanoERGs with bound checks
Implementations
impl BoxValue
[src]
pub const MIN_VALUE_PER_BOX_BYTE: u32
[src]
Minimal box value per byte of the serialized box that was set on on launch
pub const MIN_RAW: u64
[src]
Absolute minimal value, calculated from smallest possible box size and original value per byte requirement
pub const MAX_RAW: u64
[src]
Absolue maximal allowed box value
pub const MIN: BoxValue
[src]
Absolute minimal value, calculated from smallest possible box size and original value per byte requirement
pub const SAFE_USER_MIN: BoxValue
[src]
Recommended (safe) minimal box value to use in case box size estimation is unavailable. Allows box size upto 2777 bytes with current min box value per byte of 360 nanoERGs
pub fn new(v: u64) -> Result<BoxValue, BoxValueError>
[src]
create from u64 with bounds check
pub const fn within_bounds(v: u64) -> bool
[src]
Check if a value is in bounds
pub fn as_u64(&self) -> &u64
[src]
Get the value as u64
pub fn as_i64(&self) -> i64
[src]
Get the value as i64
pub fn checked_add(&self, rhs: &Self) -> Result<Self, BoxValueError>
[src]
Addition with overflow check
pub fn checked_sub(&self, rhs: &Self) -> Result<Self, BoxValueError>
[src]
Subtraction with overflow and bounds check
pub fn checked_mul(&self, rhs: &Self) -> Result<Self, BoxValueError>
[src]
Multiplication with overflow check
pub fn checked_mul_u32(&self, rhs: u32) -> Result<Self, BoxValueError>
[src]
Multiplication with overflow check
Trait Implementations
impl Clone for BoxValue
[src]
impl Copy for BoxValue
[src]
impl Debug for BoxValue
[src]
impl<'de> Deserialize<'de> for BoxValue
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl Eq for BoxValue
[src]
impl From<BoxValue> for u64
[src]
impl From<BoxValue> for i64
[src]
impl Hash for BoxValue
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl PartialEq<BoxValue> for BoxValue
[src]
impl PartialOrd<BoxValue> for BoxValue
[src]
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl Serialize for BoxValue
[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl SigmaSerializable for BoxValue
[src]
fn sigma_serialize<W: WriteSigmaVlqExt>(&self, w: &mut W) -> Result<(), Error>
[src]
fn sigma_parse<R: SigmaByteRead>(r: &mut R) -> Result<Self, SerializationError>
[src]
fn sigma_serialize_bytes(&self) -> Vec<u8>
[src]
fn sigma_parse_bytes(bytes: Vec<u8>) -> Result<Self, SerializationError>
[src]
impl StructuralEq for BoxValue
[src]
impl StructuralPartialEq for BoxValue
[src]
impl TryFrom<i64> for BoxValue
[src]
type Error = BoxValueError
The type returned in the event of a conversion error.
fn try_from(v: i64) -> Result<Self, Self::Error>
[src]
impl TryFrom<u64> for BoxValue
[src]
Auto Trait Implementations
impl RefUnwindSafe for BoxValue
impl Send for BoxValue
impl Sync for BoxValue
impl Unpin for BoxValue
impl UnwindSafe for BoxValue
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
pub fn equivalent(&self, key: &K) -> bool
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,