Enum pem_iterator::body::Bytes [] [src]

pub enum Bytes {
    One([u8; 1]),
    Two([u8; 2]),
    Three([u8; 3]),
}

Variants

Trait Implementations

impl Clone for Bytes
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Bytes
[src]

impl Debug for Bytes
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for Bytes
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for Bytes
[src]

impl Hash for Bytes
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl AsRef<[u8]> for Bytes
[src]

[src]

Performs the conversion.

impl AsMut<[u8]> for Bytes
[src]

[src]

Performs the conversion.

impl Borrow<[u8]> for Bytes
[src]

[src]

Immutably borrows from an owned value. Read more

impl BorrowMut<[u8]> for Bytes
[src]

[src]

Mutably borrows from an owned value. Read more

impl IntoIterator for Bytes
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<'a> IntoIterator for &'a Bytes
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<'a> IntoIterator for &'a mut Bytes
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more