pub struct LitByte { /* private fields */ }

Implementations

This method is non-trivial, so here is a doc-test for it.

let byte_a: LitByte = parse_quote!(b'a');
let token_a = byte_a.token();
assert_eq!(token_a.to_string(), r"b'a'");

let byte_nul: LitByte = parse_quote!(b'\x00');
let token_nul = byte_nul.token();
assert_eq!(token_nul.to_string(), r"b'\x00'");

let byte_tilde: LitByte = parse_quote!(b'~');
let token_tilde = byte_tilde.token();
assert_eq!(token_tilde.to_string(), r"b'~'");

let byte_space: LitByte = parse_quote!(b' ');
let token_space = byte_space.token();
assert_eq!(token_space.to_string(), r"b' '");

let byte_del: LitByte = parse_quote!(b'\x7f');
let token_del = byte_del.token();
assert_eq!(token_del.to_string(), r"b'\x7f'");

let byte_nonascii_80: LitByte = parse_quote!(b'\x80');
let token_nonascii_80 = byte_nonascii_80.token();
assert_eq!(token_nonascii_80.to_string(), r"b'\x80'");

let byte_nonascii_ff: LitByte = parse_quote!(b'\xff');
let token_nonascii_ff = byte_nonascii_ff.token();
assert_eq!(token_nonascii_ff.to_string(), r"b'\xff'");

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Formats the value using the given formatter. Read more

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

Feeds this value into the given Hasher. Read more

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

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

This method tests for !=.

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

This method tests for !=.

Write self to the given TokenStream. Read more

Convert self directly into a TokenStream object. Read more

Convert self directly into a TokenStream object. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Returns a Span covering the complete contents of this syntax tree node, or Span::call_site() if this node is empty. Read more

TODO(H2CO3): a faster, less naive implementation would be great. We should use the byte offset of start to compute that of end, sparing the double scan of the source up until the start location.

let source = r#"
   -3.667
  1248  "string ű literal"
      "wíőzs"
"#;
let tokens: Many<Lit> = source.parse()?;

assert_eq!(tokens.len(), 4);
assert_eq!(tokens[0].byte_range(source),  4..10);
assert_eq!(tokens[1].byte_range(source), 13..17);
assert_eq!(tokens[2].byte_range(source), 19..38);
assert_eq!(tokens[3].byte_range(source), 45..54);

TODO(H2CO3): a faster, less naive implementation would be great. We should use the char offset of start to compute that of end, sparing the double scan of the source up until the start location.

let source = r#"
   -3.667
  1248  "string ű literal"
      "wíőzs"
"#;
let tokens: Many<Lit> = source.parse()?;

assert_eq!(tokens.len(), 4);
assert_eq!(tokens[0].char_range(source),  4..10);
assert_eq!(tokens[1].char_range(source), 13..17);
assert_eq!(tokens[2].char_range(source), 19..37);
assert_eq!(tokens[3].char_range(source), 44..51);

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.