Struct grep_matcher::LineTerminator[][src]

pub struct LineTerminator(_);

A line terminator.

A line terminator represents the end of a line. Generally, every line is either "terminated" by the end of a stream or a specific byte (or sequence of bytes).

Generally, a line terminator is a single byte, specifically, \n, on Unix-like systems. On Windows, a line terminator is \r\n (referred to as CRLF for Carriage Return; Line Feed).

The default line terminator is \n on all platforms.

Methods

impl LineTerminator
[src]

Return a new single-byte line terminator. Any byte is valid.

Return a new line terminator represented by \r\n.

When this option is used, consumers may generally treat a lone \n as a line terminator in addition to \r\n.

Returns true if and only if this line terminator is CRLF.

Returns this line terminator as a single byte.

If the line terminator is CRLF, then this returns \n. This is useful for routines that, for example, find line boundaries by treating \n as a line terminator even when it isn't preceded by \r.

Returns this line terminator as a sequence of bytes.

This returns a singleton sequence for all line terminators except for CRLF, in which case, it returns \r\n.

The slice returned is guaranteed to have length at least 1.

Trait Implementations

impl Clone for LineTerminator
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for LineTerminator
[src]

impl Debug for LineTerminator
[src]

Formats the value using the given formatter. Read more

impl Eq for LineTerminator
[src]

impl Hash for LineTerminator
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for LineTerminator
[src]

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

This method tests for !=.

impl Default for LineTerminator
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations