pub struct TimeTrackingDetails {
pub original_estimate: Option<String>,
pub remaining_estimate: Option<String>,
pub time_spent: Option<String>,
pub original_estimate_seconds: Option<i64>,
pub remaining_estimate_seconds: Option<i64>,
pub time_spent_seconds: Option<i64>,
}
Expand description
TimeTrackingDetails : Time tracking details.
Fields§
§original_estimate: Option<String>
The original estimate of time needed for this issue in readable format.
remaining_estimate: Option<String>
The remaining estimate of time needed for this issue in readable format.
time_spent: Option<String>
Time worked on this issue in readable format.
original_estimate_seconds: Option<i64>
The original estimate of time needed for this issue in seconds.
remaining_estimate_seconds: Option<i64>
The remaining estimate of time needed for this issue in seconds.
time_spent_seconds: Option<i64>
Time worked on this issue in seconds.
Implementations§
Source§impl TimeTrackingDetails
impl TimeTrackingDetails
Sourcepub fn new() -> TimeTrackingDetails
pub fn new() -> TimeTrackingDetails
Time tracking details.
Trait Implementations§
Source§impl Clone for TimeTrackingDetails
impl Clone for TimeTrackingDetails
Source§fn clone(&self) -> TimeTrackingDetails
fn clone(&self) -> TimeTrackingDetails
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 Debug for TimeTrackingDetails
impl Debug for TimeTrackingDetails
Source§impl Default for TimeTrackingDetails
impl Default for TimeTrackingDetails
Source§fn default() -> TimeTrackingDetails
fn default() -> TimeTrackingDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimeTrackingDetails
impl<'de> Deserialize<'de> for TimeTrackingDetails
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 TimeTrackingDetails
impl PartialEq for TimeTrackingDetails
Source§impl Serialize for TimeTrackingDetails
impl Serialize for TimeTrackingDetails
impl StructuralPartialEq for TimeTrackingDetails
Auto Trait Implementations§
impl Freeze for TimeTrackingDetails
impl RefUnwindSafe for TimeTrackingDetails
impl Send for TimeTrackingDetails
impl Sync for TimeTrackingDetails
impl Unpin for TimeTrackingDetails
impl UnwindSafe for TimeTrackingDetails
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