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
sourceimpl 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
sourceimpl Clone for UpdateScheduleRecord
impl Clone for UpdateScheduleRecord
sourcefn clone(&self) -> UpdateScheduleRecord
fn clone(&self) -> UpdateScheduleRecord
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for UpdateScheduleRecord
impl Debug for UpdateScheduleRecord
sourceimpl Default for UpdateScheduleRecord
impl Default for UpdateScheduleRecord
sourcefn default() -> UpdateScheduleRecord
fn default() -> UpdateScheduleRecord
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for UpdateScheduleRecord
impl<'de> Deserialize<'de> for UpdateScheduleRecord
sourcefn 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
sourceimpl PartialEq<UpdateScheduleRecord> for UpdateScheduleRecord
impl PartialEq<UpdateScheduleRecord> for UpdateScheduleRecord
sourcefn eq(&self, other: &UpdateScheduleRecord) -> bool
fn eq(&self, other: &UpdateScheduleRecord) -> bool
sourceimpl Serialize for UpdateScheduleRecord
impl Serialize for UpdateScheduleRecord
impl StructuralPartialEq for UpdateScheduleRecord
Auto Trait Implementations
impl RefUnwindSafe for UpdateScheduleRecord
impl Send for UpdateScheduleRecord
impl Sync for UpdateScheduleRecord
impl Unpin for UpdateScheduleRecord
impl UnwindSafe for UpdateScheduleRecord
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more