Struct cbm::Petscii[][src]

pub struct Petscii(_);

Commodore's 8-bit computers used an unusual variant of ASCII commonly known as "PETSCII". A PETSCII string can be represented by this Petscii struct, and its functions help handle PETSCII strings and perform lossy conversions between PETSCII and Unicode.

Methods

impl Petscii
[src]

We only translate Unicode code points that happen to be present in our PETSCII mapping. This includes letters, numbers, punctuation, and a handful of block graphic code points.

Trait Implementations

impl Into<Petscii> for Id
[src]

Performs the conversion.

impl From<Petscii> for Id
[src]

Performs the conversion.

impl Clone for Petscii
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Petscii
[src]

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

This method tests for !=.

impl Into<String> for Petscii
[src]

Performs the conversion.

impl From<String> for Petscii
[src]

Performs the conversion.

impl<'a> From<&'a String> for Petscii
[src]

Performs the conversion.

impl<'a> From<&'a str> for Petscii
[src]

Performs the conversion.

impl AsRef<Petscii> for Petscii
[src]

Performs the conversion.

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

Performs the conversion.

impl Display for Petscii
[src]

Formats the value using the given formatter. Read more

impl Debug for Petscii
[src]

Formats the value using the given formatter. Read more

impl Index<usize> for Petscii
[src]

The returned type after indexing.

Performs the indexing (container[index]) operation.

impl IntoIterator for Petscii
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

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

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

Auto Trait Implementations

impl Send for Petscii

impl Sync for Petscii