Enum libpijul_compat::Hash
[−]
[src]
pub enum Hash {
None,
Sha512(Sha512),
}The external hash of patches.
Variants
NoneNone is the hash of the "null patch", which introduced a single root vertex at the beginning of the repository.
Sha512(Sha512)Patch hashed using the SHA2-512 algorithm.
Methods
impl Hash[src]
fn from_binary(v: &[u8]) -> Option<Self>[src]
Get a Hash from a binary slice. This function does not
compute the digest of anything, it just converts types.
fn from_base58(base58: &str) -> Option<Self>[src]
Decode a hash from a base58-encoded str.
fn as_slice(&self) -> &[u8][src]
This hash as a slice (nonempty iff SHA512). This method might disappear when new hashes are introduced.
fn as_ref(&self) -> HashRef[src]
A borrowed version of this Hash, used for instance to
query the databases.
fn of_slice(buf: &[u8]) -> Hash[src]
Create a Hash from the binary slice of the patch contents.
impl Hash[src]
Trait Implementations
impl Eq for Hash[src]
impl PartialEq for Hash[src]
fn eq(&self, __arg_0: &Hash) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Hash) -> bool[src]
This method tests for !=.
impl Hash for Hash[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)[src]
Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl PartialOrd for Hash[src]
fn partial_cmp(&self, __arg_0: &Hash) -> Option<Ordering>[src]
This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, __arg_0: &Hash) -> bool[src]
This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, __arg_0: &Hash) -> bool[src]
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, __arg_0: &Hash) -> bool[src]
This method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, __arg_0: &Hash) -> bool[src]
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for Hash[src]
fn cmp(&self, __arg_0: &Hash) -> Ordering[src]
This method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.22.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.22.0[src]
Compares and returns the minimum of two values. Read more