pub struct AgileBoardList {
pub boards: Vec<AgileBoard>,
pub total: u32,
}Expand description
Result from listing agile boards.
Fields§
§boards: Vec<AgileBoard>Boards returned.
total: u32Total number of boards.
Trait Implementations§
Source§impl Clone for AgileBoardList
impl Clone for AgileBoardList
Source§fn clone(&self) -> AgileBoardList
fn clone(&self) -> AgileBoardList
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 AgileBoardList
impl Debug for AgileBoardList
Auto Trait Implementations§
impl Freeze for AgileBoardList
impl RefUnwindSafe for AgileBoardList
impl Send for AgileBoardList
impl Sync for AgileBoardList
impl Unpin for AgileBoardList
impl UnsafeUnpin for AgileBoardList
impl UnwindSafe for AgileBoardList
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