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