pub struct DistroArchSeriesFilter(/* private fields */);Expand description
A filter for packages to be included in or excluded from a DAS.
Since package sets can include other package sets, a single package set is flexible enough for this. However, one might reasonably want to either include some packages (“this architecture is obsolescent or experimental and we only want to build a few packages for it”) or exclude some packages (“this architecture can’t handle some packages so we want to make them go away centrally”).
Implementations§
Source§impl DistroArchSeriesFilter
impl DistroArchSeriesFilter
pub fn get<'a>( &self, client: &'a dyn Client, ) -> Result<DistroArchSeriesFilterFull, Error>
pub fn get_wadl<'a>(&self, client: &'a dyn Client) -> Result<Resource, Error>
pub fn put<'a>( &self, client: &'a dyn Client, representation: &DistroArchSeriesFilterFull, ) -> Result<(), Error>
pub fn patch<'a>( &self, client: &'a dyn Client, representation: &DistroArchSeriesFilterDiff, ) -> Result<(), Error>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DistroArchSeriesFilter
impl RefUnwindSafe for DistroArchSeriesFilter
impl Send for DistroArchSeriesFilter
impl Sync for DistroArchSeriesFilter
impl Unpin for DistroArchSeriesFilter
impl UnwindSafe for DistroArchSeriesFilter
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