Struct fortresscrypto::LoginKey[][src]

#[must_use]
pub struct LoginKey(pub [u8; 32]);

Methods

impl LoginKey
[src]

from_slice() creates an object from a byte slice

This function will fail and return None if the length of the byte-s;ice isn't equal to the length of the object

impl LoginKey
[src]

Trait Implementations

impl Clone for LoginKey
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Rand for LoginKey
[src]

Generates a random instance of this type using the specified source of randomness. Read more

impl PartialEq for LoginKey
[src]

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

This method tests for !=.

impl Eq for LoginKey
[src]

impl Serialize for LoginKey
[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for LoginKey
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Index<Range<usize>> for LoginKey
[src]

Allows a user to access the byte contents of an object as a slice.

WARNING: it might be tempting to do comparisons on objects by using x[a..b] == y[a..b]. This will open up for timing attacks when comparing for example authenticator tags. Because of this only use the comparison functions exposed by the sodiumoxide API.

The returned type after indexing.

Performs the indexing (container[index]) operation.

impl Index<RangeTo<usize>> for LoginKey
[src]

Allows a user to access the byte contents of an object as a slice.

WARNING: it might be tempting to do comparisons on objects by using x[..b] == y[..b]. This will open up for timing attacks when comparing for example authenticator tags. Because of this only use the comparison functions exposed by the sodiumoxide API.

The returned type after indexing.

Performs the indexing (container[index]) operation.

impl Index<RangeFrom<usize>> for LoginKey
[src]

Allows a user to access the byte contents of an object as a slice.

WARNING: it might be tempting to do comparisons on objects by using x[a..] == y[a..]. This will open up for timing attacks when comparing for example authenticator tags. Because of this only use the comparison functions exposed by the sodiumoxide API.

The returned type after indexing.

Performs the indexing (container[index]) operation.

impl Index<RangeFull> for LoginKey
[src]

Allows a user to access the byte contents of an object as a slice.

WARNING: it might be tempting to do comparisons on objects by using x[] == y[]. This will open up for timing attacks when comparing for example authenticator tags. Because of this only use the comparison functions exposed by the sodiumoxide API.

The returned type after indexing.

Performs the indexing (container[index]) operation.

impl Debug for LoginKey
[src]

Formats the value using the given formatter. Read more

impl Drop for LoginKey
[src]

Executes the destructor for this type. Read more

Auto Trait Implementations

impl Send for LoginKey

impl Sync for LoginKey