pub struct NotificationDeliveryPreferencesScheduleInput {
pub disabled: Option<bool>,
pub sunday: Option<Box<NotificationDeliveryPreferencesDayInput>>,
pub monday: Option<Box<NotificationDeliveryPreferencesDayInput>>,
pub tuesday: Option<Box<NotificationDeliveryPreferencesDayInput>>,
pub wednesday: Option<Box<NotificationDeliveryPreferencesDayInput>>,
pub thursday: Option<Box<NotificationDeliveryPreferencesDayInput>>,
pub friday: Option<Box<NotificationDeliveryPreferencesDayInput>>,
pub saturday: Option<Box<NotificationDeliveryPreferencesDayInput>>,
}Fields§
§disabled: Option<bool>§sunday: Option<Box<NotificationDeliveryPreferencesDayInput>>§monday: Option<Box<NotificationDeliveryPreferencesDayInput>>§tuesday: Option<Box<NotificationDeliveryPreferencesDayInput>>§wednesday: Option<Box<NotificationDeliveryPreferencesDayInput>>§thursday: Option<Box<NotificationDeliveryPreferencesDayInput>>§friday: Option<Box<NotificationDeliveryPreferencesDayInput>>§saturday: Option<Box<NotificationDeliveryPreferencesDayInput>>Trait Implementations§
Source§impl Clone for NotificationDeliveryPreferencesScheduleInput
impl Clone for NotificationDeliveryPreferencesScheduleInput
Source§fn clone(&self) -> NotificationDeliveryPreferencesScheduleInput
fn clone(&self) -> NotificationDeliveryPreferencesScheduleInput
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 Default for NotificationDeliveryPreferencesScheduleInput
impl Default for NotificationDeliveryPreferencesScheduleInput
Source§fn default() -> NotificationDeliveryPreferencesScheduleInput
fn default() -> NotificationDeliveryPreferencesScheduleInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NotificationDeliveryPreferencesScheduleInput
impl<'de> Deserialize<'de> for NotificationDeliveryPreferencesScheduleInput
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 NotificationDeliveryPreferencesScheduleInput
impl RefUnwindSafe for NotificationDeliveryPreferencesScheduleInput
impl Send for NotificationDeliveryPreferencesScheduleInput
impl Sync for NotificationDeliveryPreferencesScheduleInput
impl Unpin for NotificationDeliveryPreferencesScheduleInput
impl UnwindSafe for NotificationDeliveryPreferencesScheduleInput
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