pub struct Extension { /* private fields */ }
Expand description
These are “extensions” to the standard strftime
conversion specifiers.
This type represents which flags and/or padding were provided with a
specifier. For example, %_3d
uses 3 spaces of padding.
Currently, this type provides no structured introspection facilities. It
is exported and available only via implementations of the Custom
trait
for reasons of semver compatible API evolution. If you have use cases for
introspecting this type, please open an issue.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Extension
impl RefUnwindSafe for Extension
impl Send for Extension
impl Sync for Extension
impl Unpin for Extension
impl UnwindSafe for Extension
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