Struct python_ast::token::OwnedTk [] [src]

pub struct OwnedTk {
    id: Id,
    bytes: Vec<u8>,
    tag: Tag,
}

Attempt to make an owned token to get out of lifetime hell. I found myself in trouble after trying to rewrite and inject values into the token slice in the parsing phase. This was to figure out block scopes and such since something something whitespace scoping.

Fields

Methods

impl OwnedTk
[src]

Trait Implementations

impl Debug for OwnedTk
[src]

Formats the value using the given formatter.

impl Clone for OwnedTk
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for OwnedTk
[src]

impl PartialEq for OwnedTk
[src]

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

This method tests for !=.

impl PartialOrd for OwnedTk
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for OwnedTk
[src]

This method returns an Ordering between self and other. Read more

impl<'a> From<&'a Tk<'a>> for OwnedTk
[src]

Performs the conversion.

impl<'a> From<&'a TkSlice<'a>> for OwnedTk
[src]

Performs the conversion.

impl Serialize for OwnedTk
[src]

Serialize this value into the given Serde serializer. Read more