pub struct TaggedRead {
pub path: String,
pub tag: String,
pub text: String,
pub visible: VisibleSet,
pub line_count: usize,
}Expand description
Result of formatting a file for the model.
Fields§
§path: String§tag: String§text: String§visible: VisibleSet§line_count: usizeTrait Implementations§
Source§impl Clone for TaggedRead
impl Clone for TaggedRead
Source§fn clone(&self) -> TaggedRead
fn clone(&self) -> TaggedRead
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 TaggedRead
impl Debug for TaggedRead
impl Eq for TaggedRead
Source§impl PartialEq for TaggedRead
impl PartialEq for TaggedRead
impl StructuralPartialEq for TaggedRead
Auto Trait Implementations§
impl Freeze for TaggedRead
impl RefUnwindSafe for TaggedRead
impl Send for TaggedRead
impl Sync for TaggedRead
impl Unpin for TaggedRead
impl UnsafeUnpin for TaggedRead
impl UnwindSafe for TaggedRead
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.