pub struct TimestampsNoDelete {
pub created_at: Option<String>,
pub updated_at: Option<String>,
}Fields§
§created_at: Option<String>Date and time in ISO 8601 format.
updated_at: Option<String>Date and time in ISO 8601 format.
Implementations§
Source§impl TimestampsNoDelete
impl TimestampsNoDelete
pub fn new() -> TimestampsNoDelete
Trait Implementations§
Source§impl Clone for TimestampsNoDelete
impl Clone for TimestampsNoDelete
Source§fn clone(&self) -> TimestampsNoDelete
fn clone(&self) -> TimestampsNoDelete
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 TimestampsNoDelete
impl Debug for TimestampsNoDelete
Source§impl Default for TimestampsNoDelete
impl Default for TimestampsNoDelete
Source§fn default() -> TimestampsNoDelete
fn default() -> TimestampsNoDelete
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimestampsNoDelete
impl<'de> Deserialize<'de> for TimestampsNoDelete
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 PartialEq for TimestampsNoDelete
impl PartialEq for TimestampsNoDelete
Source§impl Serialize for TimestampsNoDelete
impl Serialize for TimestampsNoDelete
impl StructuralPartialEq for TimestampsNoDelete
Auto Trait Implementations§
impl Freeze for TimestampsNoDelete
impl RefUnwindSafe for TimestampsNoDelete
impl Send for TimestampsNoDelete
impl Sync for TimestampsNoDelete
impl Unpin for TimestampsNoDelete
impl UnwindSafe for TimestampsNoDelete
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