pub struct ScheduleTaskUpdate {
pub enabled: Option<bool>,
pub last_run_at: Option<String>,
pub next_run_at: Option<Option<String>>,
pub last_status: Option<Option<String>>,
pub last_error: Option<Option<String>>,
pub last_delivery_error: Option<Option<String>>,
pub repeat: Option<Option<ScheduleRepeat>>,
pub root_message_id: Option<Option<String>>,
pub chat_type: Option<Option<ScheduleChatType>>,
}Fields§
§enabled: Option<bool>§last_run_at: Option<String>§next_run_at: Option<Option<String>>§last_status: Option<Option<String>>§last_error: Option<Option<String>>§last_delivery_error: Option<Option<String>>§repeat: Option<Option<ScheduleRepeat>>§root_message_id: Option<Option<String>>§chat_type: Option<Option<ScheduleChatType>>Trait Implementations§
Source§impl Clone for ScheduleTaskUpdate
impl Clone for ScheduleTaskUpdate
Source§fn clone(&self) -> ScheduleTaskUpdate
fn clone(&self) -> ScheduleTaskUpdate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ScheduleTaskUpdate
impl Debug for ScheduleTaskUpdate
Source§impl<'de> Deserialize<'de> for ScheduleTaskUpdate
impl<'de> Deserialize<'de> for ScheduleTaskUpdate
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
impl Eq for ScheduleTaskUpdate
Source§impl PartialEq for ScheduleTaskUpdate
impl PartialEq for ScheduleTaskUpdate
Source§fn eq(&self, other: &ScheduleTaskUpdate) -> bool
fn eq(&self, other: &ScheduleTaskUpdate) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ScheduleTaskUpdate
impl Serialize for ScheduleTaskUpdate
impl StructuralPartialEq for ScheduleTaskUpdate
Auto Trait Implementations§
impl Freeze for ScheduleTaskUpdate
impl RefUnwindSafe for ScheduleTaskUpdate
impl Send for ScheduleTaskUpdate
impl Sync for ScheduleTaskUpdate
impl Unpin for ScheduleTaskUpdate
impl UnsafeUnpin for ScheduleTaskUpdate
impl UnwindSafe for ScheduleTaskUpdate
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