pub struct RegisterSnapshot {
pub counts: Vec<i32>,
pub dimensions: Vec<i32>,
pub token_lists: Vec<Vec<u8>>,
}Expand description
Register values captured in a cached format.
Fields§
§counts: Vec<i32>Snapshot of TeX count registers.
dimensions: Vec<i32>Snapshot of TeX dimension registers in scaled points.
token_lists: Vec<Vec<u8>>Snapshot of TeX token list registers as opaque bytes.
Trait Implementations§
Source§impl Clone for RegisterSnapshot
impl Clone for RegisterSnapshot
Source§fn clone(&self) -> RegisterSnapshot
fn clone(&self) -> RegisterSnapshot
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RegisterSnapshot
impl Debug for RegisterSnapshot
Source§impl Default for RegisterSnapshot
impl Default for RegisterSnapshot
Source§fn default() -> RegisterSnapshot
fn default() -> RegisterSnapshot
Returns the “default value” for a type. Read more
impl Eq for RegisterSnapshot
Source§impl PartialEq for RegisterSnapshot
impl PartialEq for RegisterSnapshot
Source§fn eq(&self, other: &RegisterSnapshot) -> bool
fn eq(&self, other: &RegisterSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RegisterSnapshot
Auto Trait Implementations§
impl Freeze for RegisterSnapshot
impl RefUnwindSafe for RegisterSnapshot
impl Send for RegisterSnapshot
impl Sync for RegisterSnapshot
impl Unpin for RegisterSnapshot
impl UnsafeUnpin for RegisterSnapshot
impl UnwindSafe for RegisterSnapshot
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