pub struct SprintCommentInput<'a> {
pub mode: SprintCommentMode,
pub plan_file: &'a Path,
pub sprint: i32,
pub sprint_name: &'a str,
pub rows: &'a [TaskSpecRow],
pub strategy: SplitStrategy,
pub note_text: Option<&'a str>,
pub approval_comment_url: Option<&'a str>,
pub issue_body_text: Option<&'a str>,
}Fields§
§mode: SprintCommentMode§plan_file: &'a Path§sprint: i32§sprint_name: &'a str§rows: &'a [TaskSpecRow]§strategy: SplitStrategy§note_text: Option<&'a str>§approval_comment_url: Option<&'a str>§issue_body_text: Option<&'a str>Trait Implementations§
Source§impl<'a> Clone for SprintCommentInput<'a>
impl<'a> Clone for SprintCommentInput<'a>
Auto Trait Implementations§
impl<'a> Freeze for SprintCommentInput<'a>
impl<'a> RefUnwindSafe for SprintCommentInput<'a>
impl<'a> Send for SprintCommentInput<'a>
impl<'a> Sync for SprintCommentInput<'a>
impl<'a> Unpin for SprintCommentInput<'a>
impl<'a> UnsafeUnpin for SprintCommentInput<'a>
impl<'a> UnwindSafe for SprintCommentInput<'a>
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