Struct exr::meta::attribute::Text[][src]

pub struct Text { /* fields omitted */ }

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

Implementations

impl Text[src]

pub fn new_or_none(string: impl AsRef<str>) -> Option<Self>[src]

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

pub fn new_or_panic(string: impl AsRef<str>) -> Self[src]

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

pub fn from_slice_unchecked(text: &TextSlice) -> Self[src]

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

pub fn from_bytes_unchecked(bytes: SmallVec<[u8; 24]>) -> Self[src]

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

pub fn as_slice(&self) -> &TextSlice[src]

The internal ASCII bytes this text is made of.

pub fn validate(
    &self,
    null_terminated: bool,
    long_names: Option<&mut bool>
) -> UnitResult
[src]

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

pub fn validate_bytes(
    text: &TextSlice,
    null_terminated: bool,
    long_names: Option<&mut bool>
) -> UnitResult
[src]

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

pub fn null_terminated_byte_size(&self) -> usize[src]

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

pub fn i32_sized_byte_size(&self) -> usize[src]

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

pub fn write_i32_sized<W: Write>(&self, write: &mut W) -> UnitResult[src]

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

pub fn read_i32_sized<R: Read>(read: &mut R, max_size: usize) -> Result<Self>[src]

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

pub fn read_sized<R: Read>(read: &mut R, size: usize) -> Result<Self>[src]

Read the contents with that length.

pub fn write_null_terminated<W: Write>(&self, write: &mut W) -> UnitResult[src]

Write the string contents and a null-terminator.

pub fn read_null_terminated<R: Read>(
    read: &mut R,
    max_len: usize
) -> Result<Self>
[src]

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

pub fn chars(&self) -> impl '_ + Iterator<Item = char>[src]

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

pub fn eq(&self, string: &str) -> bool[src]

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

pub fn eq_case_insensitive(&self, string: &str) -> bool[src]

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

Trait Implementations

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

impl Clone for Text[src]

impl Debug for Text[src]

impl Default for Text[src]

impl Display for Text[src]

impl Eq for Text[src]

impl<'s> From<&'s str> for Text[src]

fn from(str: &'s str) -> Self[src]

Panics if the string contains an unsupported character

impl Hash for Text[src]

impl Into<String> for Text[src]

impl Ord for Text[src]

impl PartialEq<Text> for Text[src]

impl PartialEq<str> for Text[src]

impl PartialOrd<Text> for Text[src]

impl StructuralPartialEq for Text[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<R, P> ReadPrimitive<R> for P where
    R: ReadEndian<P> + Read,
    P: Default
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.