Struct seckey::Key [] [src]

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

Temporary Key.

use seckey::Key;

let key = Key::from([8; 8]);
assert_eq!(key, [8u8; 8]);
assert!(key != [1u8; 8]);
assert_eq!(key, Key::from([8u8; 8]));

Trait Implementations

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

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

impl<T> Default for Key<T> where T: Default
[src]

Returns the "default value" for a type. Read more

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter.

impl<T: Sized> PartialEq<T> 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: Sized> PartialEq<Key<T>> 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: Sized> 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