Struct xmlparser::Stream [] [src]

pub struct Stream<'a> { /* fields omitted */ }

Streaming text parsing interface.

Methods

impl<'a> Stream<'a>
[src]

[src]

Constructs a new Stream from a string span.

[src]

Constructs a new Stream from a string.

[src]

Returns an underling string span.

[src]

Returns current position.

[src]

Sets current position equal to the end.

Used to indicate end of parsing on error.

[src]

Checks if the stream is reached the end.

Any pos() value larger than original text length indicates stream end.

Accessing stream after reaching end via safe methods will produce an UnexpectedEndOfStream error.

Accessing stream after reaching end via *_unchecked methods will produce a Rust's bound checking error.

[src]

Returns a byte from a current stream position.

Errors

Returns UnexpectedEndOfStream if we are at the end of the stream.

[src]

Checks that current byte is equal to provided.

Returns false if no bytes left.

[src]

Returns a byte from a current stream position if there is one.

[src]

Returns a next byte from a current stream position.

Errors

Returns UnexpectedEndOfStream if we are at the end of the stream.

[src]

Returns a char from a current stream position.

Errors

Returns UnexpectedEndOfStream if we are at the end of the stream.

[src]

Advances by n bytes.

Examples

use xmlparser::Stream;

let mut s = Stream::from_str("text");
s.advance(2); // ok
s.advance(20); // will cause a panic via debug_assert!().

[src]

Skips whitespaces.

Accepted values: ' ' \n \r \t &#x20; &#x9; &#xD; &#xA;.

Examples

use xmlparser::Stream;

let mut s = Stream::from_str(" \t\n\r &#x20; ");
s.skip_spaces();
assert_eq!(s.at_end(), true);

[src]

Checks that the stream starts with a selected text.

We are using &[u8] instead of &str for performance reasons.

Examples

use xmlparser::Stream;

let mut s = Stream::from_str("Some text.");
s.advance(5);
assert_eq!(s.starts_with(b"text"), true);
assert_eq!(s.starts_with(b"long"), false);

[src]

Checks if the stream is starts with a space.

Uses skip_spaces() internally.

[src]

Consumes whitespaces.

Like skip_spaces(), but checks that first char is actually a space.

[src]

Consumes current byte if it's equal to the provided byte.

Errors

  • InvalidChar

Examples

use xmlparser::Stream;

let mut s = Stream::from_str("Some text.");
s.consume_byte(b'S').unwrap();
s.consume_byte(b'o').unwrap();
s.consume_byte(b'm').unwrap();
// s.consume_byte(b'q').unwrap(); // will produce an error

[src]

Consumes current byte if it's equal to one of the provided bytes.

Returns a coincidental byte.

Errors

  • InvalidChar

[src]

Consumes selected string.

Errors

  • InvalidChar

[src]

Consumes an XML name and returns it.

Consumes according to: https://www.w3.org/TR/xml/#NT-Name

Errors

  • InvalidNameToken - if name is empty or starts with an invalid char
  • UnexpectedEndOfStream

[src]

Skips an XML name.

The same as consume_name(), but does not return a consumed name.

[src]

Consumes =.

Consumes according to: https://www.w3.org/TR/xml/#NT-Eq

Errors

  • InvalidChar

[src]

Consumes quote.

Consumes '\'' or '"' and returns it.

Errors

  • InvalidChar

[src]

Consumes bytes by predicate and returns them.

Result can be empty.

[src]

Consumes bytes by predicate.

[src]

Consumes chars by predicate and returns them.

Result can be empty.

[src]

Consumes chars by predicate.

[src]

Consumes an XML character reference if there is one.

On error will reset the position to the original.

[src]

Consumes an XML reference.

Consumes according to: https://www.w3.org/TR/xml/#NT-Reference

[src]

Slices data from pos to the current position.

[src]

Slices data from the current position to the end.

[src]

Calculates a current absolute position.

This operation is very expensive. Use only for errors.

[src]

Calculates a current absolute position.

This operation is very expensive. Use only for errors.

Trait Implementations

impl<'a> PartialEq for Stream<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<'a> Clone for Stream<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Copy for Stream<'a>
[src]

impl<'a> Debug for Stream<'a>
[src]

[src]

Formats the value using the given formatter.