[][src]Struct tiff_encoder::ifd::types::ASCII

pub struct ASCII(_);

8-bit byte that contains a 7-bit ASCII code.

According the TIFF specification, the last byte of a field of ASCIIs must be NUL (binary zero, '\0').

Methods

impl ASCII[src]

pub fn from_str(s: &str) -> TiffTypeValues<ASCII>[src]

Constructs a TiffTypeValues of ASCIIs from a &str.

If the string doesn't already end with a NUL value, it will be added automatically.

pub fn values<T: AsRef<[u8]>>(values: T) -> TiffTypeValues<ASCII>[src]

Constructs a TiffTypeValues of ASCIIs from a vector of bytes.

If last value isn't already a NUL value, a NUL value will be added automatically after the last value.

pub fn new(value: u8) -> ASCII[src]

Creates an ASCIIs value from a byte.

Panics

An ASCII value only uses 7 bytes. Trying to create an ASCII from values bigger than 127 will panic.

Trait Implementations

impl TiffType for ASCII[src]

impl PartialEq<ASCII> for ASCII[src]

impl Debug for ASCII[src]

Auto Trait Implementations

impl Send for ASCII

impl Sync for ASCII

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]