pub struct DeleteTimeTrackingEntryResponse {
pub data: Option<EmptyResponse>,
}
Fields§
§data: Option<EmptyResponse>
An empty object. Some endpoints do not return an object on success. The success is conveyed through a 2– status code and returning an empty object.
Trait Implementations§
Source§impl Clone for DeleteTimeTrackingEntryResponse
impl Clone for DeleteTimeTrackingEntryResponse
Source§fn clone(&self) -> DeleteTimeTrackingEntryResponse
fn clone(&self) -> DeleteTimeTrackingEntryResponse
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 DeleteTimeTrackingEntryResponse
impl Default for DeleteTimeTrackingEntryResponse
Source§fn default() -> DeleteTimeTrackingEntryResponse
fn default() -> DeleteTimeTrackingEntryResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteTimeTrackingEntryResponse
impl<'de> Deserialize<'de> for DeleteTimeTrackingEntryResponse
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
Auto Trait Implementations§
impl Freeze for DeleteTimeTrackingEntryResponse
impl RefUnwindSafe for DeleteTimeTrackingEntryResponse
impl Send for DeleteTimeTrackingEntryResponse
impl Sync for DeleteTimeTrackingEntryResponse
impl Unpin for DeleteTimeTrackingEntryResponse
impl UnwindSafe for DeleteTimeTrackingEntryResponse
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