pub enum Token {
}Expand description
A single PostScript token.
Variants§
Int(i64)
Real(f64)
Name(Vec<u8>, bool)
LiteralName(Vec<u8>)
ImmediateName(Vec<u8>)
String(Vec<u8>)
ProcBegin
ProcEnd
ArrayBegin
ArrayEnd
DictBegin
DictEnd
BinaryTokenByte(u8)
Binary token byte (128-159) — caller must invoke the binary token parser.
Eof
Trait Implementations§
impl StructuralPartialEq for Token
Auto Trait Implementations§
impl Freeze for Token
impl RefUnwindSafe for Token
impl Send for Token
impl Sync for Token
impl Unpin for Token
impl UnsafeUnpin for Token
impl UnwindSafe for Token
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more