pub struct ListWorkweekConfigsResponse {
pub workweek_configs: Option<Vec<WorkweekConfig>>,
pub cursor: Option<String>,
pub errors: Option<Vec<Error>>,
}Expand description
ListWorkweekConfigsResponse : The response to a request for a set of WorkweekConfig objects. The response contains the requested WorkweekConfig objects and might contain a set of Error objects if the request resulted in errors.
Fields§
§workweek_configs: Option<Vec<WorkweekConfig>>A page of WorkweekConfig results.
cursor: Option<String>The value supplied in the subsequent request to fetch the next page of WorkweekConfig results.
errors: Option<Vec<Error>>Any errors that occurred during the request.
Implementations§
Source§impl ListWorkweekConfigsResponse
impl ListWorkweekConfigsResponse
Sourcepub fn new() -> ListWorkweekConfigsResponse
pub fn new() -> ListWorkweekConfigsResponse
The response to a request for a set of WorkweekConfig objects. The response contains the requested WorkweekConfig objects and might contain a set of Error objects if the request resulted in errors.
Trait Implementations§
Source§impl Clone for ListWorkweekConfigsResponse
impl Clone for ListWorkweekConfigsResponse
Source§fn clone(&self) -> ListWorkweekConfigsResponse
fn clone(&self) -> ListWorkweekConfigsResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListWorkweekConfigsResponse
impl Debug for ListWorkweekConfigsResponse
Source§impl Default for ListWorkweekConfigsResponse
impl Default for ListWorkweekConfigsResponse
Source§fn default() -> ListWorkweekConfigsResponse
fn default() -> ListWorkweekConfigsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListWorkweekConfigsResponse
impl<'de> Deserialize<'de> for ListWorkweekConfigsResponse
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
impl StructuralPartialEq for ListWorkweekConfigsResponse
Auto Trait Implementations§
impl Freeze for ListWorkweekConfigsResponse
impl RefUnwindSafe for ListWorkweekConfigsResponse
impl Send for ListWorkweekConfigsResponse
impl Sync for ListWorkweekConfigsResponse
impl Unpin for ListWorkweekConfigsResponse
impl UnsafeUnpin for ListWorkweekConfigsResponse
impl UnwindSafe for ListWorkweekConfigsResponse
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