pub struct CreationDate(pub OffsetDateTime);Available on crate feature
xml only.Expand description
The creationdate property as defined in RFC 4918.
Tuple Fields§
§0: OffsetDateTimeTrait Implementations§
Source§impl Clone for CreationDate
impl Clone for CreationDate
Source§fn clone(&self) -> CreationDate
fn clone(&self) -> CreationDate
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CreationDate
impl Debug for CreationDate
Source§impl Element for CreationDate
impl Element for CreationDate
Source§const LOCAL_NAME: &'static str = "creationdate"
const LOCAL_NAME: &'static str = "creationdate"
The local name of the element (the name inside the namespace), e.g.
multistatusSource§impl From<CreationDate> for Value
impl From<CreationDate> for Value
Source§fn from(_: CreationDate) -> Value
fn from(_: CreationDate) -> Value
Converts to this type from the input type.
Source§impl PartialEq for CreationDate
impl PartialEq for CreationDate
Source§impl TryFrom<&Value> for CreationDate
impl TryFrom<&Value> for CreationDate
impl StructuralPartialEq for CreationDate
Auto Trait Implementations§
impl Freeze for CreationDate
impl RefUnwindSafe for CreationDate
impl Send for CreationDate
impl Sync for CreationDate
impl Unpin for CreationDate
impl UnwindSafe for CreationDate
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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