Enum pascal_string::PascalStringAppendError [] [src]

pub enum PascalStringAppendError {
    NoRoom,
    NotValidAscii(AsciiError),
}

Indicates the range of errors which can occur from appending string data to a PascalString.

Variants

There is no room to store the appended data.

The data provided was not correctly encoded as ascii.

Trait Implementations

impl Debug for PascalStringAppendError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for PascalStringAppendError
[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 Display for PascalStringAppendError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for PascalStringAppendError
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

impl<E: Into<AsciiError>> From<E> for PascalStringAppendError
[src]

[src]

Performs the conversion.

Auto Trait Implementations