pub struct ScheduleAddListServiceResponse {
pub data: Option<Option<Vec<ScheduleAdd>>>,
pub success: Option<bool>,
pub message: Option<Option<String>>,
pub response_code: Option<HttpStatusCode>,
}Fields§
§data: Option<Option<Vec<ScheduleAdd>>>§success: Option<bool>§message: Option<Option<String>>§response_code: Option<HttpStatusCode>Implementations§
Trait Implementations§
Source§impl Clone for ScheduleAddListServiceResponse
impl Clone for ScheduleAddListServiceResponse
Source§fn clone(&self) -> ScheduleAddListServiceResponse
fn clone(&self) -> ScheduleAddListServiceResponse
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 Default for ScheduleAddListServiceResponse
impl Default for ScheduleAddListServiceResponse
Source§fn default() -> ScheduleAddListServiceResponse
fn default() -> ScheduleAddListServiceResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScheduleAddListServiceResponse
impl<'de> Deserialize<'de> for ScheduleAddListServiceResponse
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 ScheduleAddListServiceResponse
impl PartialEq for ScheduleAddListServiceResponse
Source§fn eq(&self, other: &ScheduleAddListServiceResponse) -> bool
fn eq(&self, other: &ScheduleAddListServiceResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ScheduleAddListServiceResponse
Auto Trait Implementations§
impl Freeze for ScheduleAddListServiceResponse
impl RefUnwindSafe for ScheduleAddListServiceResponse
impl Send for ScheduleAddListServiceResponse
impl Sync for ScheduleAddListServiceResponse
impl Unpin for ScheduleAddListServiceResponse
impl UnwindSafe for ScheduleAddListServiceResponse
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