enum

Mode

Inherits Enum < Comparable < Value < Object

Constants

Move = 0
InOut = 1
Mut = 2
Let = 3
Box = 4
Ref = 5
Copy = 6

Class methods

from_string!(str)
Source
from_string?(str : String)
Source

Instance methods

box?

Returns true if this enum value equals Box

Source
copy?

Returns true if this enum value equals Copy

Source
in_out?

Returns true if this enum value equals InOut

Source
let?

Returns true if this enum value equals Let

Source
move?

Returns true if this enum value equals Move

Source
mut?

Returns true if this enum value equals Mut

Source
ref?

Returns true if this enum value equals Ref

Source
to_binding
Source
to_s(io : IO)

Appends a String representation of this enum member to the given io.

See also: to_s.

Source