Struct rune::ast::LitByte[][src]

pub struct LitByte {
    pub token: Token,
    pub source: CopySource<u8>,
}

A byte literal.

Fields

token: Token

The token corresponding to the literal.

source: CopySource<u8>

The source of the byte.

Trait Implementations

impl Clone for LitByte[src]

impl Debug for LitByte[src]

impl Eq for LitByte[src]

impl Parse for LitByte[src]

Parse a byte literal.

Examples

use rune::{testing, ast};

testing::roundtrip::<ast::LitByte>("b'a'");
testing::roundtrip::<ast::LitByte>("b'\\0'");
testing::roundtrip::<ast::LitByte>("b'\\n'");
testing::roundtrip::<ast::LitByte>("b'\\r'");
testing::roundtrip::<ast::LitByte>("b'\\\\''");

impl PartialEq<LitByte> for LitByte[src]

impl<'a> Resolve<'a> for LitByte[src]

type Output = u8

The output type being resolved into.

impl ResolveOwned for LitByte[src]

type Owned = u8

The output type being resolved into.

impl Spanned for LitByte[src]

impl StructuralEq for LitByte[src]

impl StructuralPartialEq for LitByte[src]

impl ToTokens for LitByte[src]

Auto Trait Implementations

impl RefUnwindSafe for LitByte

impl Send for LitByte

impl Sync for LitByte

impl Unpin for LitByte

impl UnwindSafe for LitByte

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.