Struct icu_capi::utf::PotentiallyInvalidUtf16
source · pub struct PotentiallyInvalidUtf16<'a>(pub &'a [u16]);
Expand description
Implements Writeable
for [&[u16]
] according to the WHATWG Encoding Standard.
Tuple Fields§
§0: &'a [u16]
Trait Implementations§
source§impl<'a> Debug for PotentiallyInvalidUtf16<'a>
impl<'a> Debug for PotentiallyInvalidUtf16<'a>
source§impl TryWriteable for PotentiallyInvalidUtf16<'_>
impl TryWriteable for PotentiallyInvalidUtf16<'_>
type Error = DecodeUtf16Error
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<W>(
&self,
sink: &mut W,
) -> Result<Result<(), Self::Error>, Error>
fn try_write_to<W>( &self, sink: &mut W, ) -> Result<Result<(), Self::Error>, Error>
Writes the content of this writeable to a sink. Read more
Auto Trait Implementations§
impl<'a> Freeze for PotentiallyInvalidUtf16<'a>
impl<'a> RefUnwindSafe for PotentiallyInvalidUtf16<'a>
impl<'a> Send for PotentiallyInvalidUtf16<'a>
impl<'a> Sync for PotentiallyInvalidUtf16<'a>
impl<'a> Unpin for PotentiallyInvalidUtf16<'a>
impl<'a> UnwindSafe for PotentiallyInvalidUtf16<'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