pub struct CmeFixtureFileV0 {
pub path: String,
pub metadata: Vec<CmeFixtureFileMetadataV0>,
pub markers: Vec<CmeFixtureMarkerV0>,
pub source: String,
}Expand description
One file section in a reusable fixture.
Fields§
§path: StringWorkspace-relative file path.
metadata: Vec<CmeFixtureFileMetadataV0>File-header metadata such as dialect or layer.
markers: Vec<CmeFixtureMarkerV0>Markers removed from the source while preserving clean-source offsets.
source: StringFile text.
Trait Implementations§
Source§impl Clone for CmeFixtureFileV0
impl Clone for CmeFixtureFileV0
Source§fn clone(&self) -> CmeFixtureFileV0
fn clone(&self) -> CmeFixtureFileV0
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 CmeFixtureFileV0
impl Debug for CmeFixtureFileV0
Source§impl PartialEq for CmeFixtureFileV0
impl PartialEq for CmeFixtureFileV0
Source§fn eq(&self, other: &CmeFixtureFileV0) -> bool
fn eq(&self, other: &CmeFixtureFileV0) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CmeFixtureFileV0
impl Serialize for CmeFixtureFileV0
impl Eq for CmeFixtureFileV0
impl StructuralPartialEq for CmeFixtureFileV0
Auto Trait Implementations§
impl Freeze for CmeFixtureFileV0
impl RefUnwindSafe for CmeFixtureFileV0
impl Send for CmeFixtureFileV0
impl Sync for CmeFixtureFileV0
impl Unpin for CmeFixtureFileV0
impl UnsafeUnpin for CmeFixtureFileV0
impl UnwindSafe for CmeFixtureFileV0
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