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
sourceimpl UpdateScheduleResponse
impl UpdateScheduleResponse
sourcepub fn new() -> UpdateScheduleResponse
pub fn new() -> UpdateScheduleResponse
Response schema for the updateSchedule operation.
Trait Implementations
sourceimpl Clone for UpdateScheduleResponse
impl Clone for UpdateScheduleResponse
sourcefn clone(&self) -> UpdateScheduleResponse
fn clone(&self) -> UpdateScheduleResponse
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 UpdateScheduleResponse
impl Debug for UpdateScheduleResponse
sourceimpl Default for UpdateScheduleResponse
impl Default for UpdateScheduleResponse
sourcefn default() -> UpdateScheduleResponse
fn default() -> UpdateScheduleResponse
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for UpdateScheduleResponse
impl<'de> Deserialize<'de> for UpdateScheduleResponse
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<UpdateScheduleResponse> for UpdateScheduleResponse
impl PartialEq<UpdateScheduleResponse> for UpdateScheduleResponse
sourcefn eq(&self, other: &UpdateScheduleResponse) -> bool
fn eq(&self, other: &UpdateScheduleResponse) -> bool
sourceimpl Serialize for UpdateScheduleResponse
impl Serialize for UpdateScheduleResponse
impl StructuralPartialEq for UpdateScheduleResponse
Auto Trait Implementations
impl RefUnwindSafe for UpdateScheduleResponse
impl Send for UpdateScheduleResponse
impl Sync for UpdateScheduleResponse
impl Unpin for UpdateScheduleResponse
impl UnwindSafe for UpdateScheduleResponse
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