pub struct BlockerChainEntry {
pub id: String,
pub title: String,
pub status: String,
pub priority: i32,
pub depth: usize,
pub is_root: bool,
pub actionable: bool,
pub blocks_count: usize,
}Fields§
§id: String§title: String§status: String§priority: i32§depth: usize§is_root: bool§actionable: bool§blocks_count: usizeTrait Implementations§
Source§impl Clone for BlockerChainEntry
impl Clone for BlockerChainEntry
Source§fn clone(&self) -> BlockerChainEntry
fn clone(&self) -> BlockerChainEntry
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 BlockerChainEntry
impl Debug for BlockerChainEntry
Auto Trait Implementations§
impl Freeze for BlockerChainEntry
impl RefUnwindSafe for BlockerChainEntry
impl Send for BlockerChainEntry
impl Sync for BlockerChainEntry
impl Unpin for BlockerChainEntry
impl UnsafeUnpin for BlockerChainEntry
impl UnwindSafe for BlockerChainEntry
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