Struct cssparser::ParserState [−][src]
pub struct ParserState { /* fields omitted */ }
Expand description
A capture of the internal state of a Parser
(including the position within the input),
obtained from the Parser::position
method.
Can be used with the Parser::reset
method to restore that state.
Should only be used with the Parser
instance it came from.
Implementations
The position from the start of the input, counted in UTF-8 bytes.
The line number and column number
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ParserState
impl Send for ParserState
impl Sync for ParserState
impl Unpin for ParserState
impl UnwindSafe for ParserState
Blanket Implementations
Mutably borrows from an owned value. Read more