pub struct FeatureAnchor {
pub file: String,
pub line: usize,
pub text: String,
}Expand description
Feature anchor for one entry.
Fields§
§file: StringFeature file path as authored.
line: usize1-based step line.
text: StringStep text (keyword stripped).
Trait Implementations§
Source§impl Clone for FeatureAnchor
impl Clone for FeatureAnchor
Source§fn clone(&self) -> FeatureAnchor
fn clone(&self) -> FeatureAnchor
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FeatureAnchor
impl Debug for FeatureAnchor
Auto Trait Implementations§
impl Freeze for FeatureAnchor
impl RefUnwindSafe for FeatureAnchor
impl Send for FeatureAnchor
impl Sync for FeatureAnchor
impl Unpin for FeatureAnchor
impl UnsafeUnpin for FeatureAnchor
impl UnwindSafe for FeatureAnchor
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