pub struct StopWatch {
pub created: Option<String>,
pub duration: Option<String>,
pub issue_index: Option<i64>,
pub issue_title: Option<String>,
pub repo_name: Option<String>,
pub repo_owner_name: Option<String>,
pub seconds: Option<i64>,
}
Expand description
StopWatch : StopWatch represent a running stopwatch
Fields§
§created: Option<String>
§duration: Option<String>
§issue_index: Option<i64>
§issue_title: Option<String>
§repo_name: Option<String>
§repo_owner_name: Option<String>
§seconds: Option<i64>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StopWatch
impl<'de> Deserialize<'de> for StopWatch
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 StopWatch
Auto Trait Implementations§
impl Freeze for StopWatch
impl RefUnwindSafe for StopWatch
impl Send for StopWatch
impl Sync for StopWatch
impl Unpin for StopWatch
impl UnwindSafe for StopWatch
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