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