Struct icu::datetime::FormattedNeoDateTime
source · pub struct FormattedNeoDateTime<'a> { /* private fields */ }
Expand description
An intermediate type during a datetime formatting operation.
Not intended to be stored: convert to a string first.
Implementations§
source§impl FormattedNeoDateTime<'_>
impl FormattedNeoDateTime<'_>
sourcepub fn pattern(&self) -> DateTimePattern
pub fn pattern(&self) -> DateTimePattern
Gets the pattern used in this formatted value.
sourcepub fn to_string_lossy(&self) -> String
pub fn to_string_lossy(&self) -> String
Gets the formatted result as a string.
Trait Implementations§
source§impl<'a> Debug for FormattedNeoDateTime<'a>
impl<'a> Debug for FormattedNeoDateTime<'a>
source§impl TryWriteable for FormattedNeoDateTime<'_>
impl TryWriteable for FormattedNeoDateTime<'_>
type Error = DateTimeWriteError
source§fn try_write_to_parts<S>(
&self,
sink: &mut S,
) -> Result<Result<(), <FormattedNeoDateTime<'_> as TryWriteable>::Error>, Error>where
S: PartsWrite + ?Sized,
fn try_write_to_parts<S>(
&self,
sink: &mut S,
) -> Result<Result<(), <FormattedNeoDateTime<'_> as TryWriteable>::Error>, Error>where
S: PartsWrite + ?Sized,
Writes the content of this writeable to a sink with parts (annotations). 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
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 FormattedNeoDateTime<'a>
impl<'a> RefUnwindSafe for FormattedNeoDateTime<'a>
impl<'a> Send for FormattedNeoDateTime<'a>
impl<'a> Sync for FormattedNeoDateTime<'a>
impl<'a> Unpin for FormattedNeoDateTime<'a>
impl<'a> UnwindSafe for FormattedNeoDateTime<'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