Struct seckey::Key [] [src]

pub struct Key<T: Sized>(_);

Temporary Key.

use seckey::Key;

let key = Key::<[u8; 8]>::new([8; 8]);
assert_eq!(key, [8u8; 8]);

Methods

impl<T> Key<T> where T: Sized
[src]

Trait Implementations

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

Performs the conversion.

impl<T> Deref for Key<T>
[src]

The resulting type after dereferencing

The method called to dereference a value

impl<T> DerefMut for Key<T>
[src]

The method called to mutably dereference a value

impl<T> Debug for Key<T>
[src]

Formats the value using the given formatter.

impl<T: Sized, X: ?Sized> PartialEq<X> for Key<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T> Eq for Key<T>
[src]

impl<T> Drop for Key<T> where T: Sized
[src]

A method called when the value goes out of scope. Read more