[][src]Struct parse_mediawiki_sql::types::Sha1

pub struct Sha1<'a>(_);

Represents a SHA-1 hash in base 36, for instance in the img_sha1 field of the image table.

Implementations

impl<'a> Sha1<'a>[src]

pub fn into_inner(self) -> &'a str[src]

Trait Implementations

impl<'a> Clone for Sha1<'a>[src]

impl<'a> Copy for Sha1<'a>[src]

impl<'a> Debug for Sha1<'a>[src]

impl<'a> Eq for Sha1<'a>[src]

impl<'a> From<&'a str> for Sha1<'a>[src]

impl<'a> From<Sha1<'a>> for &'a str[src]

impl<'a> FromSql<'a> for Sha1<'a>[src]

impl<'a> Hash for Sha1<'a>[src]

impl<'a> Ord for Sha1<'a>[src]

impl<'a> PartialEq<Sha1<'a>> for Sha1<'a>[src]

impl<'a> PartialOrd<Sha1<'a>> for Sha1<'a>[src]

impl<'a> StructuralEq for Sha1<'a>[src]

impl<'a> StructuralPartialEq for Sha1<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Sha1<'a>

impl<'a> Send for Sha1<'a>

impl<'a> Sync for Sha1<'a>

impl<'a> Unpin for Sha1<'a>

impl<'a> UnwindSafe for Sha1<'a>

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> 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.