pub struct GetIdsOfWorklogsModifiedSinceParams {
pub since: Option<i64>,
pub expand: Option<String>,
}
Expand description
struct for passing parameters to the method get_ids_of_worklogs_modified_since
Fields§
§since: Option<i64>
The date and time, as a UNIX timestamp in milliseconds, after which updated worklogs are returned.
expand: Option<String>
Use expand to include additional information about worklogs in the response. This parameter accepts properties
that returns the properties of each worklog.
Trait Implementations§
Source§impl Clone for GetIdsOfWorklogsModifiedSinceParams
impl Clone for GetIdsOfWorklogsModifiedSinceParams
Source§fn clone(&self) -> GetIdsOfWorklogsModifiedSinceParams
fn clone(&self) -> GetIdsOfWorklogsModifiedSinceParams
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 moreAuto Trait Implementations§
impl Freeze for GetIdsOfWorklogsModifiedSinceParams
impl RefUnwindSafe for GetIdsOfWorklogsModifiedSinceParams
impl Send for GetIdsOfWorklogsModifiedSinceParams
impl Sync for GetIdsOfWorklogsModifiedSinceParams
impl Unpin for GetIdsOfWorklogsModifiedSinceParams
impl UnwindSafe for GetIdsOfWorklogsModifiedSinceParams
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