Struct wallet::Slice32 [−][src]
Wrapper type for all slice-based 256-bit types implementing many important traits, so types based on it can simply derive their implementations
Implementations
impl Slice32[src]
pub fn from_slice(slice: impl AsRef<[u8]>) -> Option<Slice32>[src]
pub fn to_vec(&self) -> Vec<u8>[src]
Trait Implementations
impl AsMut<<Slice32 as Wrapper>::Inner> for Slice32[src]
impl AsRef<<Slice32 as Wrapper>::Inner> for Slice32[src]
impl Borrow<<Slice32 as Wrapper>::Inner> for Slice32[src]
impl BorrowMut<<Slice32 as Wrapper>::Inner> for Slice32[src]
fn borrow_mut(&mut self) -> &mut Self::Inner[src]
impl Clone for Slice32[src]
impl Copy for Slice32[src]
impl Debug for Slice32[src]
impl Default for Slice32[src]
impl Deref for Slice32[src]
type Target = Self::Inner
The resulting type after dereferencing.
fn deref(&self) -> &Self::Target[src]
impl DerefMut for Slice32[src]
impl Display for Slice32[src]
impl Eq for Slice32[src]
impl From<[u8; 32]> for Slice32[src]
impl From<HashLock> for Slice32[src]
impl From<HashPreimage> for Slice32[src]
fn from(wrapped: HashPreimage) -> Self[src]
impl From<Slice32> for HashLock[src]
impl From<Slice32> for HashPreimage[src]
impl FromHex for Slice32[src]
fn from_byte_iter<I>(iter: I) -> Result<Self, Error> where
I: Iterator<Item = Result<u8, Error>> + ExactSizeIterator + DoubleEndedIterator, [src]
I: Iterator<Item = Result<u8, Error>> + ExactSizeIterator + DoubleEndedIterator,
pub fn from_hex(s: &str) -> Result<Self, Error>
impl FromStr for Slice32[src]
type Err = Error
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Self, Self::Err>[src]
impl Hash for Slice32[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl LowerHex for Slice32[src]
impl Ord for Slice32[src]
fn cmp(&self, other: &Slice32) -> Ordering[src]
#[must_use]pub fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
impl PartialEq<Slice32> for Slice32[src]
impl PartialOrd<Slice32> for Slice32[src]
fn partial_cmp(&self, other: &Slice32) -> Option<Ordering>[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl StrictDecode for Slice32[src]
fn strict_decode<D: Read>(d: D) -> Result<Self, Error>[src]
pub fn strict_deserialize(data: impl AsRef<[u8]>) -> Result<Self, Error>[src]
impl StrictEncode for Slice32[src]
fn strict_encode<E: Write>(&self, e: E) -> Result<usize, Error>[src]
pub fn strict_serialize(&self) -> Result<Vec<u8, Global>, Error>[src]
impl StructuralEq for Slice32[src]
impl StructuralPartialEq for Slice32[src]
impl UpperHex for Slice32[src]
impl Wrapper for Slice32[src]
type Inner = [u8; 32]
Inner type wrapped by the current newtype
fn from_inner(inner: Self::Inner) -> Self[src]
fn as_inner(&self) -> &Self::Inner[src]
fn as_inner_mut(&mut self) -> &mut Self::Inner[src]
fn into_inner(self) -> Self::Inner[src]
pub fn to_inner(&self) -> Self::Inner[src]
pub fn copy(&self) -> Self where
Self::Inner: Copy, [src]
Self::Inner: Copy,
Auto Trait Implementations
impl RefUnwindSafe for Slice32
impl Send for Slice32
impl Sync for Slice32
impl Unpin for Slice32
impl UnwindSafe for Slice32
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> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToHex for T where
T: LowerHex,
T: LowerHex,
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> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
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>,