Enum icu_casemap::internals::FullMappingResult
source · pub enum FullMappingResult<'a> {
Remove,
CodePoint(char),
String(&'a str),
}
Variants§
Implementations§
source§impl<'a> FullMappingResult<'a>
impl<'a> FullMappingResult<'a>
fn add_to_set<S: ClosureSink>(&self, set: &mut S)
Trait Implementations§
source§impl Writeable for FullMappingResult<'_>
impl Writeable for FullMappingResult<'_>
source§fn write_to<W: Write + ?Sized>(&self, sink: &mut W) -> Result
fn write_to<W: Write + ?Sized>(&self, sink: &mut W) -> Result
Writes a string to the given sink. Errors from the sink are bubbled up.
The default implementation delegates to
write_to_parts
, and discards any
Part
annotations.source§fn write_to_parts<S>(&self, sink: &mut S) -> Result<(), Error>where
S: PartsWrite + ?Sized,
fn write_to_parts<S>(&self, sink: &mut S) -> Result<(), Error>where
S: PartsWrite + ?Sized,
Write bytes and
Part
annotations to the given sink. Errors from the
sink are bubbled up. The default implementation delegates to write_to
,
and doesn’t produce any Part
annotations.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
Auto Trait Implementations§
impl<'a> Freeze for FullMappingResult<'a>
impl<'a> RefUnwindSafe for FullMappingResult<'a>
impl<'a> Send for FullMappingResult<'a>
impl<'a> Sync for FullMappingResult<'a>
impl<'a> Unpin for FullMappingResult<'a>
impl<'a> UnwindSafe for FullMappingResult<'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