pub struct FragmentMetadata {
pub engine_profile: String,
pub format_id: String,
pub fragment_kind: FragmentKind,
}Expand description
Metadata describing how a fragment was produced.
Fields§
§engine_profile: StringEngine profile identifier, such as tex, etex, or xetex.
format_id: StringFormat image identifier, such as plain, latex, or a custom format.
fragment_kind: FragmentKindWhether this fragment is inline math, display math, or text.
Trait Implementations§
Source§impl Clone for FragmentMetadata
impl Clone for FragmentMetadata
Source§fn clone(&self) -> FragmentMetadata
fn clone(&self) -> FragmentMetadata
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 FragmentMetadata
impl Debug for FragmentMetadata
Source§impl Default for FragmentMetadata
impl Default for FragmentMetadata
Source§fn default() -> FragmentMetadata
fn default() -> FragmentMetadata
Returns the “default value” for a type. Read more
impl Eq for FragmentMetadata
Source§impl PartialEq for FragmentMetadata
impl PartialEq for FragmentMetadata
Source§fn eq(&self, other: &FragmentMetadata) -> bool
fn eq(&self, other: &FragmentMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FragmentMetadata
Auto Trait Implementations§
impl Freeze for FragmentMetadata
impl RefUnwindSafe for FragmentMetadata
impl Send for FragmentMetadata
impl Sync for FragmentMetadata
impl Unpin for FragmentMetadata
impl UnsafeUnpin for FragmentMetadata
impl UnwindSafe for FragmentMetadata
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