pub struct Text { /* private fields */ }
Expand description

A byte array with each byte being a char. This is not UTF an must be constructed from a standard string.

Implementations

Create a Text from an str reference. Returns None if this string contains unsupported chars.

Create a Text from an str reference. Panics if this string contains unsupported chars.

Create a Text from a slice of bytes, without checking any of the bytes.

Create a Text from the specified bytes object, without checking any of the bytes.

The internal ASCII bytes this text is made of.

Check whether this string is valid, adjusting long_names if required. If long_names is not provided, text length will be entirely unchecked.

Check whether some bytes are valid, adjusting long_names if required. If long_names is not provided, text length will be entirely unchecked.

The byte count this string would occupy if it were encoded as a null-terminated string.

The byte count this string would occupy if it were encoded as a size-prefixed string.

Write the length of a string and then the contents with that length.

Read the length of a string and then the contents with that length.

Read the contents with that length.

Write the string contents and a null-terminator.

Read a string until the null-terminator is found. Then skips the null-terminator.

The underlying bytes that represent this text.

Iterate over the individual chars in this text, similar to String::chars(). Does not do any heap-allocation but borrows from this instance instead.

Compare this exr::Text with a plain &str.

Compare this exr::Text with a plain &str ignoring capitalization.

Trait Implementations

Immutably borrows from an owned value. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Formats the value using the given formatter. Read more

Panics if the string contains an unsupported character

Feeds this value into the given Hasher. Read more

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

Converts this type into the (usually inferred) input type.

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

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

This method tests for !=.

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

This method tests for !=.

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

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian().

Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian().

Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian().

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.