pub enum BinaryTokenResult {
Single(PsObject),
Sequence(PsObject),
}Expand description
Result of parsing a binary token.
Variants§
Single(PsObject)
Individual token (types 132-149) — a single PsObject.
Sequence(PsObject)
Binary object sequence (types 128-131) — an executable array.
Auto Trait Implementations§
impl Freeze for BinaryTokenResult
impl RefUnwindSafe for BinaryTokenResult
impl Send for BinaryTokenResult
impl Sync for BinaryTokenResult
impl Unpin for BinaryTokenResult
impl UnsafeUnpin for BinaryTokenResult
impl UnwindSafe for BinaryTokenResult
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