Enum chrono::format::Item [−][src]
pub enum Item<'a> { Literal(&'a str), OwnedLiteral(Box<str>), Space(&'a str), OwnedSpace(Box<str>), Numeric(Numeric, Pad), Fixed(Fixed), Error, }
Expand description
A single formatting item. This is used for both formatting and parsing.
Variants
Literal(&'a str)
A literally printed and parsed text.
Same to Literal
but with the string owned by the item.
Space(&'a str)
Whitespace. Prints literally but reads zero or more whitespace.
Same to Space
but with the string owned by the item.
Numeric item. Can be optionally padded to the maximal length (if any) when formatting; the parser simply ignores any padded whitespace and zeroes.
Fixed(Fixed)
Fixed-format item.
Issues a formatting error. Used to signal an invalid format string.
Trait Implementations
impl<'a> Eq for Item<'a>
[src]
impl<'a> StructuralEq for Item<'a>
[src]
impl<'a> StructuralPartialEq for Item<'a>
[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for Item<'a>
impl<'a> Send for Item<'a>
impl<'a> Sync for Item<'a>
impl<'a> Unpin for Item<'a>
impl<'a> UnwindSafe for Item<'a>
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more