pub struct AgileBoard {
pub id: u64,
pub name: String,
pub board_type: String,
pub project_key: Option<String>,
}Expand description
A JIRA agile board.
Fields§
§id: u64Board ID.
name: StringBoard name.
board_type: StringBoard type (e.g., “scrum”, “kanban”).
project_key: Option<String>Project key associated with the board, if available.
Trait Implementations§
Source§impl Clone for AgileBoard
impl Clone for AgileBoard
Source§fn clone(&self) -> AgileBoard
fn clone(&self) -> AgileBoard
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 AgileBoard
impl Debug for AgileBoard
Auto Trait Implementations§
impl Freeze for AgileBoard
impl RefUnwindSafe for AgileBoard
impl Send for AgileBoard
impl Sync for AgileBoard
impl Unpin for AgileBoard
impl UnsafeUnpin for AgileBoard
impl UnwindSafe for AgileBoard
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