pub struct UpdateScheduleResponse {
pub payload: Option<Vec<UpdateScheduleRecord>>,
pub errors: Option<Vec<Error>>,
}Expand description
UpdateScheduleResponse : Response schema for the updateSchedule operation.
Fields§
§payload: Option<Vec<UpdateScheduleRecord>>Contains the UpdateScheduleRecords for which the error/warning has occurred.
errors: Option<Vec<Error>>A list of error responses returned when a request is unsuccessful.
Implementations§
Source§impl UpdateScheduleResponse
impl UpdateScheduleResponse
Sourcepub fn new() -> UpdateScheduleResponse
pub fn new() -> UpdateScheduleResponse
Response schema for the updateSchedule operation.
Trait Implementations§
Source§impl Clone for UpdateScheduleResponse
impl Clone for UpdateScheduleResponse
Source§fn clone(&self) -> UpdateScheduleResponse
fn clone(&self) -> UpdateScheduleResponse
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 UpdateScheduleResponse
impl Debug for UpdateScheduleResponse
Source§impl Default for UpdateScheduleResponse
impl Default for UpdateScheduleResponse
Source§fn default() -> UpdateScheduleResponse
fn default() -> UpdateScheduleResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateScheduleResponse
impl<'de> Deserialize<'de> for UpdateScheduleResponse
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 UpdateScheduleResponse
impl PartialEq for UpdateScheduleResponse
Source§impl Serialize for UpdateScheduleResponse
impl Serialize for UpdateScheduleResponse
impl StructuralPartialEq for UpdateScheduleResponse
Auto Trait Implementations§
impl Freeze for UpdateScheduleResponse
impl RefUnwindSafe for UpdateScheduleResponse
impl Send for UpdateScheduleResponse
impl Sync for UpdateScheduleResponse
impl Unpin for UpdateScheduleResponse
impl UnwindSafe for UpdateScheduleResponse
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