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

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

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: TextBytes) -> 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]

fn borrow(&self) -> &TextSlice[src]

Immutably borrows from an owned value. Read more

impl Clone for Text[src]

fn clone(&self) -> Text[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Text[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Default for Text[src]

fn default() -> Text[src]

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

impl Display for Text[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

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]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

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

impl Into<String> for Text[src]

fn into(self) -> String[src]

Performs the conversion.

impl Ord for Text[src]

fn cmp(&self, other: &Text) -> Ordering[src]

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

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl PartialEq<Text> for Text[src]

fn eq(&self, other: &Text) -> bool[src]

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

fn ne(&self, other: &Text) -> bool[src]

This method tests for !=.

impl PartialEq<str> for Text[src]

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

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

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialOrd<Text> for Text[src]

fn partial_cmp(&self, other: &Text) -> Option<Ordering>[src]

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

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

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

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

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

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

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

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

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

impl Eq for Text[src]

impl StructuralPartialEq for Text[src]

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]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

fn read_from_little_endian(read: &mut R) -> Result<Self, Error>[src]

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

fn read_from_big_endian(read: &mut R) -> Result<Self, Error>[src]

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

fn read_from_native_endian(read: &mut R) -> Result<Self, Error>[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

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

pub fn clone_into(&self, target: &mut T)[src]

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

recently added

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

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

pub default fn to_string(&self) -> String[src]

Converts the given value to a String. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.