Enum git_config::parser::Event
source · [−]pub enum Event<'a> {
Comment(ParsedComment<'a>),
SectionHeader(ParsedSectionHeader<'a>),
Key(Key<'a>),
Value(Cow<'a, [u8]>),
Newline(Cow<'a, str>),
ValueNotDone(Cow<'a, [u8]>),
ValueDone(Cow<'a, [u8]>),
Whitespace(Cow<'a, str>),
KeyValueSeparator,
}
Expand description
Syntactic events that occurs in the config. Despite all these variants
holding a Cow
instead over a simple reference, the parser will only emit
borrowed Cow
variants.
The Cow
smart pointer is used here for ease of inserting events in a
middle of an Event iterator. This is used, for example, in the GitConfig
struct when adding values.
Variants
Comment(ParsedComment<'a>)
A comment with a comment tag and the comment itself. Note that the comment itself may contain additional whitespace and comment markers at the beginning.
SectionHeader(ParsedSectionHeader<'a>)
A section header containing the section name and a subsection, if it exists.
Key(Key<'a>)
A name to a value in a section.
Value(Cow<'a, [u8]>)
A completed value. This may be any string, including the empty string, if an implicit boolean value is used. Note that these values may contain spaces and any special character. This value is also unprocessed, so it it may contain double quotes that should be replaced.
Newline(Cow<'a, str>)
Represents any token used to signify a new line character. On Unix
platforms, this is typically just \n
, but can be any valid newline
sequence. Multiple newlines (such as \n\n
) will be merged as a single
newline event.
ValueNotDone(Cow<'a, [u8]>)
Any value that isn’t completed. This occurs when the value is continued onto the next line. A Newline event is guaranteed after, followed by either a ValueDone, a Whitespace, or another ValueNotDone.
ValueDone(Cow<'a, [u8]>)
The last line of a value which was continued onto another line.
Whitespace(Cow<'a, str>)
A continuous section of insignificant whitespace. Values with internal spaces will not be separated by this event.
KeyValueSeparator
This event is emitted when the parser counters a valid =
character
separating the key and value. This event is necessary as it eliminates
the ambiguity for whitespace events between a key and value event.
Implementations
sourceimpl Event<'_>
impl Event<'_>
sourcepub fn to_vec(&self) -> Vec<u8>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
pub fn to_vec(&self) -> Vec<u8>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
A: Allocator,
Generates a byte representation of the value. This should be used when non-UTF-8 sequences are present or a UTF-8 representation can’t be guaranteed.
sourcepub fn to_owned(&self) -> Event<'static>
pub fn to_owned(&self) -> Event<'static>
Coerces into an owned instance. This differs from the standard clone
implementation as calling clone will not copy the borrowed variant,
while this method will. In other words:
Borrow type | .clone() | to_owned() |
---|---|---|
Borrowed | Borrowed | Owned |
Owned | Owned | Owned |
This can be most effectively seen by the differing lifetimes between the
two. This method guarantees a 'static
lifetime, while clone
does
not.
Trait Implementations
sourceimpl<'a> From<ParsedSectionHeader<'a>> for Event<'a>
impl<'a> From<ParsedSectionHeader<'a>> for Event<'a>
sourcefn from(header: ParsedSectionHeader<'_>) -> Event<'_>
fn from(header: ParsedSectionHeader<'_>) -> Event<'_>
Converts to this type from the input type.
sourceimpl<'a> Ord for Event<'a>
impl<'a> Ord for Event<'a>
sourceimpl<'a> PartialOrd<Event<'a>> for Event<'a>
impl<'a> PartialOrd<Event<'a>> for Event<'a>
sourcefn partial_cmp(&self, other: &Event<'a>) -> Option<Ordering>
fn partial_cmp(&self, other: &Event<'a>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl<'a> Eq for Event<'a>
impl<'a> StructuralEq for Event<'a>
impl<'a> StructuralPartialEq for Event<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for Event<'a>
impl<'a> Send for Event<'a>
impl<'a> Sync for Event<'a>
impl<'a> Unpin for Event<'a>
impl<'a> UnwindSafe for Event<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more