pub struct OmenaFixtureMarkerV0 {
pub kind: &'static str,
pub name: Option<String>,
pub byte_start: usize,
pub byte_end: usize,
}Expand description
One marker extracted from fixture source text.
Fields§
§kind: &'static strMarker kind such as cursor, namedPoint, or rangeStart.
name: Option<String>Optional marker payload.
byte_start: usizeByte offset in the cleaned source.
byte_end: usizeByte end in the cleaned source.
Trait Implementations§
Source§impl Clone for OmenaFixtureMarkerV0
impl Clone for OmenaFixtureMarkerV0
Source§fn clone(&self) -> OmenaFixtureMarkerV0
fn clone(&self) -> OmenaFixtureMarkerV0
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 OmenaFixtureMarkerV0
impl Debug for OmenaFixtureMarkerV0
impl Eq for OmenaFixtureMarkerV0
Source§impl PartialEq for OmenaFixtureMarkerV0
impl PartialEq for OmenaFixtureMarkerV0
Source§impl Serialize for OmenaFixtureMarkerV0
impl Serialize for OmenaFixtureMarkerV0
impl StructuralPartialEq for OmenaFixtureMarkerV0
Auto Trait Implementations§
impl Freeze for OmenaFixtureMarkerV0
impl RefUnwindSafe for OmenaFixtureMarkerV0
impl Send for OmenaFixtureMarkerV0
impl Sync for OmenaFixtureMarkerV0
impl Unpin for OmenaFixtureMarkerV0
impl UnsafeUnpin for OmenaFixtureMarkerV0
impl UnwindSafe for OmenaFixtureMarkerV0
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