pub enum Updated {
None,
Datetime(NaiveDateTime),
}Variants§
None
Datetime(NaiveDateTime)
Trait Implementations§
Source§impl ActivitypubProperty for Updated
impl ActivitypubProperty for Updated
Source§impl<'de> Deserialize<'de> for Updated
impl<'de> Deserialize<'de> for Updated
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<NaiveDateTime> for Updated
impl From<NaiveDateTime> for Updated
Source§fn from(value: NaiveDateTime) -> Self
fn from(value: NaiveDateTime) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Updated
impl RefUnwindSafe for Updated
impl Send for Updated
impl Sync for Updated
impl Unpin for Updated
impl UnwindSafe for Updated
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