pub struct FeatureRecord {
pub id: String,
pub category: String,
pub description: String,
pub steps: Vec<String>,
pub passes: bool,
}Fields§
§id: String§category: String§description: String§steps: Vec<String>§passes: boolTrait Implementations§
Source§impl Clone for FeatureRecord
impl Clone for FeatureRecord
Source§fn clone(&self) -> FeatureRecord
fn clone(&self) -> FeatureRecord
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 FeatureRecord
impl Debug for FeatureRecord
Source§impl PartialEq for FeatureRecord
impl PartialEq for FeatureRecord
impl Eq for FeatureRecord
impl StructuralPartialEq for FeatureRecord
Auto Trait Implementations§
impl Freeze for FeatureRecord
impl RefUnwindSafe for FeatureRecord
impl Send for FeatureRecord
impl Sync for FeatureRecord
impl Unpin for FeatureRecord
impl UnwindSafe for FeatureRecord
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.