pub struct PageOfWorklogs {
pub start_at: Option<i32>,
pub max_results: Option<i32>,
pub total: Option<i32>,
pub worklogs: Option<Vec<Worklog>>,
}
Expand description
PageOfWorklogs : Paginated list of worklog details
Fields§
§start_at: Option<i32>
The index of the first item returned on the page.
max_results: Option<i32>
The maximum number of results that could be on the page.
total: Option<i32>
The number of results on the page.
worklogs: Option<Vec<Worklog>>
List of worklogs.
Implementations§
Source§impl PageOfWorklogs
impl PageOfWorklogs
Sourcepub fn new() -> PageOfWorklogs
pub fn new() -> PageOfWorklogs
Paginated list of worklog details
Trait Implementations§
Source§impl Clone for PageOfWorklogs
impl Clone for PageOfWorklogs
Source§fn clone(&self) -> PageOfWorklogs
fn clone(&self) -> PageOfWorklogs
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 PageOfWorklogs
impl Debug for PageOfWorklogs
Source§impl Default for PageOfWorklogs
impl Default for PageOfWorklogs
Source§fn default() -> PageOfWorklogs
fn default() -> PageOfWorklogs
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PageOfWorklogs
impl<'de> Deserialize<'de> for PageOfWorklogs
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 PageOfWorklogs
impl PartialEq for PageOfWorklogs
Source§impl Serialize for PageOfWorklogs
impl Serialize for PageOfWorklogs
impl StructuralPartialEq for PageOfWorklogs
Auto Trait Implementations§
impl Freeze for PageOfWorklogs
impl RefUnwindSafe for PageOfWorklogs
impl Send for PageOfWorklogs
impl Sync for PageOfWorklogs
impl Unpin for PageOfWorklogs
impl UnwindSafe for PageOfWorklogs
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