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

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.

Methods

impl Text[src]

Important traits for &'_ mut [u8]
pub fn bytes(&self) -> &[u8][src]

The internal ASCII bytes this text is made of.

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

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

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 validate(
    &self,
    null_terminated: bool,
    long_names: Option<bool>
) -> UnitResult
[src]

Check whether this string is valid, considering the maximum text length.

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

Check whether some bytes are valid, considering the maximum text length.

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.

Trait Implementations

impl Clone for Text[src]

impl Debug for Text[src]

impl Display for Text[src]

impl Eq for Text[src]

impl Hash for Text[src]

impl Into<String> for Text[src]

impl Ord for Text[src]

impl PartialEq<Text> for Text[src]

impl PartialOrd<Text> for Text[src]

impl StructuralEq for Text[src]

impl StructuralPartialEq for Text[src]

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

type Error = &'static str

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Text

impl Send for Text

impl Sync for Text

impl Unpin for Text

impl UnwindSafe for Text

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<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.