pub struct Tag {
pub name: String,
pub file_name: String,
pub address: String,
}
Expand description
Represents a Vi compatible tag
A tag consists of:
- name: The identifier (e.g., function name, class name, etc.)
- file_name: The file where the identifier is defined
- address: A search pattern to locate the identifier in the file
Fields§
§name: String
The name of the tag (e.g., function name, class name)
file_name: String
The file where the tag is defined
address: String
The search pattern to locate the tag in the file
Implementations§
Trait Implementations§
impl StructuralPartialEq for Tag
Auto Trait Implementations§
impl Freeze for Tag
impl RefUnwindSafe for Tag
impl Send for Tag
impl Sync for Tag
impl Unpin for Tag
impl UnwindSafe for Tag
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