pub struct AvailabilityRow<'a> {
pub package_name: &'a str,
pub availability_list: Vec<bool>,
pub last_available: Option<NaiveDate>,
/* private fields */
}Expand description
A single row in an availability table.
Fields§
§package_name: &'a strName of the package.
availability_list: Vec<bool>List of “availabilities”.
last_available: Option<NaiveDate>Date when the component has been available for the last time.
Trait Implementations§
Source§impl<'a> Debug for AvailabilityRow<'a>
impl<'a> Debug for AvailabilityRow<'a>
Auto Trait Implementations§
impl<'a> Freeze for AvailabilityRow<'a>
impl<'a> RefUnwindSafe for AvailabilityRow<'a>
impl<'a> Send for AvailabilityRow<'a>
impl<'a> Sync for AvailabilityRow<'a>
impl<'a> Unpin for AvailabilityRow<'a>
impl<'a> UnwindSafe for AvailabilityRow<'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