[][src]Enum cpclib_basic::tokens::BasicTokenPrefixed

#[repr(u8)]pub enum BasicTokenPrefixed {
    Abs,
    Asc,
    Atn,
    CharDollar,
    Cint,
    Cos,
    Creal,
    Exp,
    Fix,
    Fre,
    Inkey,
    Inp,
    Joy,
    Len,
    Log,
    Log10,
    LowerDollar,
    Peek,
    Remain,
    Sign,
    SpaceDollar,
    Sq,
    Sqr,
    StrDollar,
    Tan,
    Unt,
    UpperDollar,
    Val,
    Eof,
    Err,
    Himem,
    InkeyDollar,
    Pi,
    Rnd,
    Time,
    Xpos,
    Ypos,
    Derr,
    BinDollar,
    DecDollar,
    HexDollar,
    Instr,
    LeftDollar,
    Max,
    Min,
    Pos,
    RightDollar,
    Round,
    StringDollar,
    Test,
    Teststr,
    CopycharDollar,
    Vpos,
}

Variants

Abs
Asc
Atn
CharDollar
Cint
Cos
Creal
Exp
Fix
Fre
Inkey
Inp
Joy
Len
Log
Log10
LowerDollar
Peek
Remain
Sign
SpaceDollar
Sq
Sqr
StrDollar
Tan
Unt
UpperDollar
Val
Eof
Err
Himem
InkeyDollar
Pi
Rnd
Time
Xpos
Ypos
Derr
BinDollar
DecDollar
HexDollar
Instr
LeftDollar
Max
Min
Pos
RightDollar
Round
StringDollar
Test
Teststr
CopycharDollar
Vpos

Methods

impl BasicTokenPrefixed[src]

pub fn value(self) -> u8[src]

Returns the 8bits code that represents the prefixed token

Trait Implementations

impl Clone for BasicTokenPrefixed[src]

impl Copy for BasicTokenPrefixed[src]

impl Debug for BasicTokenPrefixed[src]

impl Display for BasicTokenPrefixed[src]

impl From<BasicTokenPrefixed> for u8[src]

impl PartialEq<BasicTokenPrefixed> for BasicTokenPrefixed[src]

impl StructuralPartialEq for BasicTokenPrefixed[src]

impl TryFrom<u8> for BasicTokenPrefixed[src]

type Error = TryFromPrimitiveError<Self>

The type returned in the event of a conversion error.

impl TryFromPrimitive for BasicTokenPrefixed[src]

type Primitive = u8

Auto Trait Implementations

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> ToString for T where
    T: Display + ?Sized
[src]

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.