pub struct TimeEntryActivitiesWrapper<T> {
pub time_entry_activities: Vec<T>,
}
Expand description
helper struct for outer layers with a time_entry_activities field holding the inner data
Fields§
§time_entry_activities: Vec<T>
to parse JSON with time_entry_activities key
Trait Implementations§
Source§impl<T: Clone> Clone for TimeEntryActivitiesWrapper<T>
impl<T: Clone> Clone for TimeEntryActivitiesWrapper<T>
Source§fn clone(&self) -> TimeEntryActivitiesWrapper<T>
fn clone(&self) -> TimeEntryActivitiesWrapper<T>
Returns a copy 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<T: Debug> Debug for TimeEntryActivitiesWrapper<T>
impl<T: Debug> Debug for TimeEntryActivitiesWrapper<T>
Source§impl<'de, T> Deserialize<'de> for TimeEntryActivitiesWrapper<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for TimeEntryActivitiesWrapper<T>where
T: Deserialize<'de>,
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<T: PartialEq> PartialEq for TimeEntryActivitiesWrapper<T>
impl<T: PartialEq> PartialEq for TimeEntryActivitiesWrapper<T>
Source§fn eq(&self, other: &TimeEntryActivitiesWrapper<T>) -> bool
fn eq(&self, other: &TimeEntryActivitiesWrapper<T>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl<T> Serialize for TimeEntryActivitiesWrapper<T>where
T: Serialize,
impl<T> Serialize for TimeEntryActivitiesWrapper<T>where
T: Serialize,
impl<T: Eq> Eq for TimeEntryActivitiesWrapper<T>
impl<T> StructuralPartialEq for TimeEntryActivitiesWrapper<T>
Auto Trait Implementations§
impl<T> Freeze for TimeEntryActivitiesWrapper<T>
impl<T> RefUnwindSafe for TimeEntryActivitiesWrapper<T>where
T: RefUnwindSafe,
impl<T> Send for TimeEntryActivitiesWrapper<T>where
T: Send,
impl<T> Sync for TimeEntryActivitiesWrapper<T>where
T: Sync,
impl<T> Unpin for TimeEntryActivitiesWrapper<T>where
T: Unpin,
impl<T> UnwindSafe for TimeEntryActivitiesWrapper<T>where
T: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.