Struct icu_datetime::FormattedDateTimePattern
source · pub struct FormattedDateTimePattern<'a> { /* private fields */ }
Expand description
A pattern that has been interpolated and implements [TryWriteable
].
Trait Implementations§
source§impl<'a> Debug for FormattedDateTimePattern<'a>
impl<'a> Debug for FormattedDateTimePattern<'a>
source§impl TryWriteable for FormattedDateTimePattern<'_>
impl TryWriteable for FormattedDateTimePattern<'_>
type Error = DateTimeWriteError
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
§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
§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 FormattedDateTimePattern<'a>
impl<'a> RefUnwindSafe for FormattedDateTimePattern<'a>
impl<'a> Send for FormattedDateTimePattern<'a>
impl<'a> Sync for FormattedDateTimePattern<'a>
impl<'a> Unpin for FormattedDateTimePattern<'a>
impl<'a> UnwindSafe for FormattedDateTimePattern<'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> 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