[][src]Struct irkle::Data

pub struct Data<T: AsRef<[u8]>> {
    pub hash: Hash,
    pub data: T,
}

The final datablock, containing the data needed

Fields

hash: Hashdata: T

Implementations

impl<T: AsRef<[u8]>> Data<T>[src]

pub fn new<D: Into<T>>(data: D) -> Self[src]

Creates a new Data from given data

Trait Implementations

impl<T: Clone + AsRef<[u8]>> Clone for Data<T>[src]

impl<T: Debug + AsRef<[u8]>> Debug for Data<T>[src]

impl<T: AsRef<[u8]>> From<Data<T>> for NodeType<T>[src]

impl<T: AsRef<[u8]>> NodeMethod<T> for Data<T>[src]

impl<T: PartialEq + AsRef<[u8]>> PartialEq<Data<T>> for Data<T>[src]

impl<T: AsRef<[u8]>> StructuralPartialEq for Data<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Data<T> where
    T: RefUnwindSafe

impl<T> Send for Data<T> where
    T: Send

impl<T> Sync for Data<T> where
    T: Sync

impl<T> Unpin for Data<T> where
    T: Unpin

impl<T> UnwindSafe for Data<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.