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
sourceimpl Text
impl Text
sourcepub fn new_or_none(string: impl AsRef<str>) -> Option<Self>
pub fn new_or_none(string: impl AsRef<str>) -> Option<Self>
Create a Text
from an str
reference.
Returns None
if this string contains unsupported chars.
sourcepub fn new_or_panic(string: impl AsRef<str>) -> Self
pub fn new_or_panic(string: impl AsRef<str>) -> Self
Create a Text
from an str
reference.
Panics if this string contains unsupported chars.
sourcepub fn from_slice_unchecked(text: &TextSlice) -> Self
pub fn from_slice_unchecked(text: &TextSlice) -> Self
Create a Text
from a slice of bytes,
without checking any of the bytes.
sourcepub fn from_bytes_unchecked(bytes: TextBytes) -> Self
pub fn from_bytes_unchecked(bytes: TextBytes) -> Self
Create a Text
from the specified bytes object,
without checking any of the bytes.
sourcepub fn validate(
&self,
null_terminated: bool,
long_names: Option<&mut bool>
) -> UnitResult
pub fn validate(
&self,
null_terminated: bool,
long_names: Option<&mut bool>
) -> UnitResult
Check whether this string is valid, adjusting long_names
if required.
If long_names
is not provided, text length will be entirely unchecked.
sourcepub fn validate_bytes(
text: &TextSlice,
null_terminated: bool,
long_names: Option<&mut bool>
) -> UnitResult
pub fn validate_bytes(
text: &TextSlice,
null_terminated: bool,
long_names: Option<&mut bool>
) -> UnitResult
Check whether some bytes are valid, adjusting long_names
if required.
If long_names
is not provided, text length will be entirely unchecked.
sourcepub fn null_terminated_byte_size(&self) -> usize
pub fn null_terminated_byte_size(&self) -> usize
The byte count this string would occupy if it were encoded as a null-terminated string.
sourcepub fn i32_sized_byte_size(&self) -> usize
pub fn i32_sized_byte_size(&self) -> usize
The byte count this string would occupy if it were encoded as a size-prefixed string.
sourcepub fn write_i32_sized<W: Write>(&self, write: &mut W) -> UnitResult
pub fn write_i32_sized<W: Write>(&self, write: &mut W) -> UnitResult
Write the length of a string and then the contents with that length.
sourcepub fn read_i32_sized<R: Read>(read: &mut R, max_size: usize) -> Result<Self>
pub fn read_i32_sized<R: Read>(read: &mut R, max_size: usize) -> Result<Self>
Read the length of a string and then the contents with that length.
sourcepub fn read_sized<R: Read>(read: &mut R, size: usize) -> Result<Self>
pub fn read_sized<R: Read>(read: &mut R, size: usize) -> Result<Self>
Read the contents with that length.
sourcepub fn write_null_terminated<W: Write>(&self, write: &mut W) -> UnitResult
pub fn write_null_terminated<W: Write>(&self, write: &mut W) -> UnitResult
Write the string contents and a null-terminator.
sourcepub fn read_null_terminated<R: Read>(
read: &mut R,
max_len: usize
) -> Result<Self>
pub fn read_null_terminated<R: Read>(
read: &mut R,
max_len: usize
) -> Result<Self>
Read a string until the null-terminator is found. Then skips the null-terminator.
sourcepub fn bytes(&self) -> &[u8]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
pub fn bytes(&self) -> &[u8]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
The underlying bytes that represent this text.
sourcepub fn chars(&self) -> impl '_ + Iterator<Item = char>
pub fn chars(&self) -> impl '_ + Iterator<Item = char>
Iterate over the individual chars in this text, similar to String::chars()
.
Does not do any heap-allocation but borrows from this instance instead.
sourcepub fn eq_case_insensitive(&self, string: &str) -> bool
pub fn eq_case_insensitive(&self, string: &str) -> bool
Compare this exr::Text
with a plain &str
ignoring capitalization.
Trait Implementations
sourceimpl Ord for Text
impl Ord for Text
sourceimpl PartialOrd<Text> for Text
impl PartialOrd<Text> for Text
sourcefn partial_cmp(&self, other: &Text) -> Option<Ordering>
fn partial_cmp(&self, other: &Text) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Eq for Text
impl StructuralPartialEq for Text
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<R, P> ReadPrimitive<R> for P where
R: Read + ReadEndian<P>,
P: Default,
impl<R, P> ReadPrimitive<R> for P where
R: Read + ReadEndian<P>,
P: Default,
sourcefn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian()
.
sourcefn read_from_big_endian(read: &mut R) -> Result<Self, Error>
fn read_from_big_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian()
.
sourcefn read_from_native_endian(read: &mut R) -> Result<Self, Error>
fn read_from_native_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian()
.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more