pub struct PostWorklogBody {
pub comment: String,
pub started: String,
pub time_spent: Option<String>,
pub time_spent_seconds: Option<String>,
}
Expand description
Worklog related types
Fields§
§comment: String
§started: String
§time_spent: Option<String>
§time_spent_seconds: Option<String>
Trait Implementations§
Source§impl Clone for PostWorklogBody
impl Clone for PostWorklogBody
Source§fn clone(&self) -> PostWorklogBody
fn clone(&self) -> PostWorklogBody
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 Debug for PostWorklogBody
impl Debug for PostWorklogBody
Auto Trait Implementations§
impl Freeze for PostWorklogBody
impl RefUnwindSafe for PostWorklogBody
impl Send for PostWorklogBody
impl Sync for PostWorklogBody
impl Unpin for PostWorklogBody
impl UnwindSafe for PostWorklogBody
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