struct FeatureList<'a> {
    list: Vec<&'a str>,
}Expand description
Builder for a list of features.
Fields§
§list: Vec<&'a str>Implementations§
Trait Implementations§
Source§impl<'a> Clone for FeatureList<'a>
 
impl<'a> Clone for FeatureList<'a>
Source§fn clone(&self) -> FeatureList<'a>
 
fn clone(&self) -> FeatureList<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for FeatureList<'a>
impl<'a> RefUnwindSafe for FeatureList<'a>
impl<'a> Send for FeatureList<'a>
impl<'a> Sync for FeatureList<'a>
impl<'a> Unpin for FeatureList<'a>
impl<'a> UnwindSafe for FeatureList<'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