pub struct AgileSprint {
pub id: u64,
pub name: String,
pub state: String,
pub start_date: Option<String>,
pub end_date: Option<String>,
pub goal: Option<String>,
}Expand description
A JIRA agile sprint.
Fields§
§id: u64Sprint ID.
name: StringSprint name.
state: StringSprint state (e.g., “active”, “future”, “closed”).
start_date: Option<String>Sprint start date (ISO 8601).
end_date: Option<String>Sprint end date (ISO 8601).
goal: Option<String>Sprint goal.
Trait Implementations§
Source§impl Clone for AgileSprint
impl Clone for AgileSprint
Source§fn clone(&self) -> AgileSprint
fn clone(&self) -> AgileSprint
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 AgileSprint
impl Debug for AgileSprint
Auto Trait Implementations§
impl Freeze for AgileSprint
impl RefUnwindSafe for AgileSprint
impl Send for AgileSprint
impl Sync for AgileSprint
impl Unpin for AgileSprint
impl UnsafeUnpin for AgileSprint
impl UnwindSafe for AgileSprint
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