pub struct ArchivedCard {
pub id: String,
pub title: String,
pub from_col_slug: String,
}Expand description
A card that was moved to the archive column by the auto-archive policy.
Fields§
§id: String§title: String§from_col_slug: StringSlug of the source column (e.g. "done"). Use this to look up the display
name at the call site, consistent with ClosedCard::from_col_slug.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ArchivedCard
impl RefUnwindSafe for ArchivedCard
impl Send for ArchivedCard
impl Sync for ArchivedCard
impl Unpin for ArchivedCard
impl UnsafeUnpin for ArchivedCard
impl UnwindSafe for ArchivedCard
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