pub struct Worklog {
pub id: String,
pub issue_key: String,
pub author: Option<String>,
pub time_spent: String,
pub time_spent_seconds: u64,
pub started: String,
pub comment: Option<String>,
pub created: String,
pub updated: String,
}Fields§
§id: String§issue_key: String§time_spent: String§time_spent_seconds: u64§started: String§comment: Option<String>§created: String§updated: StringImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Worklog
impl<'de> Deserialize<'de> for Worklog
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 Worklog
impl RefUnwindSafe for Worklog
impl Send for Worklog
impl Sync for Worklog
impl Unpin for Worklog
impl UnsafeUnpin for Worklog
impl UnwindSafe for Worklog
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