pub struct UpdateScheduleRecord {
pub availability: Option<Box<AvailabilityRecord>>,
pub warnings: Option<Vec<Warning>>,
pub errors: Option<Vec<Error>>,
}Expand description
UpdateScheduleRecord : UpdateScheduleRecord entity contains the AvailabilityRecord if there is an error/warning while performing the requested operation on it.
Fields§
§availability: Option<Box<AvailabilityRecord>>§warnings: Option<Vec<Warning>>A list of warnings returned in the sucessful execution response of an API request.
errors: Option<Vec<Error>>A list of error responses returned when a request is unsuccessful.
Implementations§
Source§impl UpdateScheduleRecord
impl UpdateScheduleRecord
Sourcepub fn new() -> UpdateScheduleRecord
pub fn new() -> UpdateScheduleRecord
UpdateScheduleRecord entity contains the AvailabilityRecord if there is an error/warning while performing the requested operation on it.
Trait Implementations§
Source§impl Clone for UpdateScheduleRecord
impl Clone for UpdateScheduleRecord
Source§fn clone(&self) -> UpdateScheduleRecord
fn clone(&self) -> UpdateScheduleRecord
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 UpdateScheduleRecord
impl Debug for UpdateScheduleRecord
Source§impl Default for UpdateScheduleRecord
impl Default for UpdateScheduleRecord
Source§fn default() -> UpdateScheduleRecord
fn default() -> UpdateScheduleRecord
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateScheduleRecord
impl<'de> Deserialize<'de> for UpdateScheduleRecord
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
Source§impl PartialEq for UpdateScheduleRecord
impl PartialEq for UpdateScheduleRecord
Source§impl Serialize for UpdateScheduleRecord
impl Serialize for UpdateScheduleRecord
impl StructuralPartialEq for UpdateScheduleRecord
Auto Trait Implementations§
impl Freeze for UpdateScheduleRecord
impl RefUnwindSafe for UpdateScheduleRecord
impl Send for UpdateScheduleRecord
impl Sync for UpdateScheduleRecord
impl Unpin for UpdateScheduleRecord
impl UnsafeUnpin for UpdateScheduleRecord
impl UnwindSafe for UpdateScheduleRecord
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