pub struct CommentTimestampFilter {
pub minimum: Option<DateTime<Utc>>,
pub maximum: Option<DateTime<Utc>>,
}
Fields§
§minimum: Option<DateTime<Utc>>
§maximum: Option<DateTime<Utc>>
Trait Implementations§
Source§impl Clone for CommentTimestampFilter
impl Clone for CommentTimestampFilter
Source§fn clone(&self) -> CommentTimestampFilter
fn clone(&self) -> CommentTimestampFilter
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 CommentTimestampFilter
impl Debug for CommentTimestampFilter
Source§impl Default for CommentTimestampFilter
impl Default for CommentTimestampFilter
Source§fn default() -> CommentTimestampFilter
fn default() -> CommentTimestampFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CommentTimestampFilter
impl<'de> Deserialize<'de> for CommentTimestampFilter
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
Auto Trait Implementations§
impl Freeze for CommentTimestampFilter
impl RefUnwindSafe for CommentTimestampFilter
impl Send for CommentTimestampFilter
impl Sync for CommentTimestampFilter
impl Unpin for CommentTimestampFilter
impl UnwindSafe for CommentTimestampFilter
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