pub type OwnedLiteral = Literal<String>;
Expand description
A literal which owns the underlying buffer.
Aliased Type§
enum OwnedLiteral {
Bool(BoolLit),
Integer(IntegerLit<String>),
Float(FloatLit<String>),
Char(CharLit<String>),
String(StringLit<String>),
Byte(ByteLit<String>),
ByteString(ByteStringLit<String>),
}