Struct time::format_description::well_known::Rfc2822
source · [−]pub struct Rfc2822;
Expand description
The format described in RFC 2822.
Example: Fri, 21 Nov 1997 09:55:06 -0600
Examples
use time_macros::datetime;
assert_eq!(
OffsetDateTime::parse("Sat, 12 Jun 1993 13:25:19 GMT", &Rfc2822)?,
datetime!(1993-06-12 13:25:19 +00:00)
);
Runassert_eq!(
datetime!(1997-11-21 09:55:06 -06:00).format(&Rfc2822)?,
"Fri, 21 Nov 1997 09:55:06 -0600"
);
RunTrait Implementations
impl Copy for Rfc2822
impl Eq for Rfc2822
impl Formattable for Rfc2822
impl Parsable for Rfc2822
impl StructuralEq for Rfc2822
impl StructuralPartialEq for Rfc2822
Auto Trait Implementations
impl RefUnwindSafe for Rfc2822
impl Send for Rfc2822
impl Sync for Rfc2822
impl Unpin for Rfc2822
impl UnwindSafe for Rfc2822
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ToOwned for Twhere
T: Clone,
impl<T> ToOwned for Twhere
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more