Struct icu_casemap::internals::StringAndWriteable
source · pub(crate) struct StringAndWriteable<'a, W> {
pub string: &'a str,
pub writeable: W,
}
Expand description
Helper type that wraps a writeable in a prefix string
Fields§
§string: &'a str
§writeable: W
Trait Implementations§
source§impl<'a, Wr: Writeable> Writeable for StringAndWriteable<'a, Wr>
impl<'a, Wr: Writeable> Writeable for StringAndWriteable<'a, Wr>
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 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 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.Auto Trait Implementations§
impl<'a, W> Freeze for StringAndWriteable<'a, W>where
W: Freeze,
impl<'a, W> RefUnwindSafe for StringAndWriteable<'a, W>where
W: RefUnwindSafe,
impl<'a, W> Send for StringAndWriteable<'a, W>where
W: Send,
impl<'a, W> Sync for StringAndWriteable<'a, W>where
W: Sync,
impl<'a, W> Unpin for StringAndWriteable<'a, W>where
W: Unpin,
impl<'a, W> UnwindSafe for StringAndWriteable<'a, W>where
W: UnwindSafe,
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