Struct icu_capi::utf::PotentiallyInvalidUtf8
source · pub struct PotentiallyInvalidUtf8<'a>(pub &'a [u8]);
Expand description
Implements Writeable
for [&[u8]
] according to the WHATWG Encoding Standard.
Tuple Fields§
§0: &'a [u8]
Trait Implementations§
source§impl<'a> Debug for PotentiallyInvalidUtf8<'a>
impl<'a> Debug for PotentiallyInvalidUtf8<'a>
source§impl TryWriteable for PotentiallyInvalidUtf8<'_>
impl TryWriteable for PotentiallyInvalidUtf8<'_>
type Error = Utf8Error
source§fn try_write_to_parts<S: PartsWrite + ?Sized>(
&self,
sink: &mut S,
) -> Result<Result<(), Self::Error>, Error>
fn try_write_to_parts<S: PartsWrite + ?Sized>( &self, sink: &mut S, ) -> Result<Result<(), Self::Error>, Error>
Writes the content of this writeable to a sink with parts (annotations). Read more
source§fn writeable_length_hint(&self) -> LengthHint
fn writeable_length_hint(&self) -> LengthHint
Returns a hint for the number of UTF-8 bytes that will be written to the sink. Read more
source§fn try_write_to_string(
&self,
) -> Result<Cow<'_, str>, (Self::Error, Cow<'_, str>)>
fn try_write_to_string( &self, ) -> Result<Cow<'_, str>, (Self::Error, Cow<'_, str>)>
Writes the content of this writeable to a string. Read more
Auto Trait Implementations§
impl<'a> Freeze for PotentiallyInvalidUtf8<'a>
impl<'a> RefUnwindSafe for PotentiallyInvalidUtf8<'a>
impl<'a> Send for PotentiallyInvalidUtf8<'a>
impl<'a> Sync for PotentiallyInvalidUtf8<'a>
impl<'a> Unpin for PotentiallyInvalidUtf8<'a>
impl<'a> UnwindSafe for PotentiallyInvalidUtf8<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Filterable for T
impl<T> Filterable for T
source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
Creates a filterable data provider with the given name for debugging. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more