pub struct TimeScheduleUpdateInput {
pub name: Option<String>,
pub entries: Option<Vec<Box<TimeScheduleEntryInput>>>,
pub external_id: Option<String>,
pub external_url: Option<String>,
}Fields§
§name: Option<String>The name of the schedule.
entries: Option<Vec<Box<TimeScheduleEntryInput>>>The schedule entries.
external_id: Option<String>The unique identifier of the external schedule.
external_url: Option<String>The URL to the external schedule.
Trait Implementations§
Source§impl Clone for TimeScheduleUpdateInput
impl Clone for TimeScheduleUpdateInput
Source§fn clone(&self) -> TimeScheduleUpdateInput
fn clone(&self) -> TimeScheduleUpdateInput
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 TimeScheduleUpdateInput
impl Debug for TimeScheduleUpdateInput
Source§impl Default for TimeScheduleUpdateInput
impl Default for TimeScheduleUpdateInput
Source§fn default() -> TimeScheduleUpdateInput
fn default() -> TimeScheduleUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimeScheduleUpdateInput
impl<'de> Deserialize<'de> for TimeScheduleUpdateInput
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 TimeScheduleUpdateInput
impl RefUnwindSafe for TimeScheduleUpdateInput
impl Send for TimeScheduleUpdateInput
impl Sync for TimeScheduleUpdateInput
impl Unpin for TimeScheduleUpdateInput
impl UnwindSafe for TimeScheduleUpdateInput
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