pub struct RenderPrepOptions {
pub style: StyleConfig,
pub fonts: FontLimits,
pub layout_hints: LayoutHints,
pub memory: MemoryBudget,
}Expand description
Render-prep orchestration options.
Fields§
§style: StyleConfigStylesheet parsing and resolution options.
fonts: FontLimitsFont registration limits.
layout_hints: LayoutHintsFinal style normalization hints.
memory: MemoryBudgetHard memory/resource budgets.
Trait Implementations§
Source§impl Clone for RenderPrepOptions
impl Clone for RenderPrepOptions
Source§fn clone(&self) -> RenderPrepOptions
fn clone(&self) -> RenderPrepOptions
Returns a duplicate of the value. Read more
1.0.0 · 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 RenderPrepOptions
impl Debug for RenderPrepOptions
Source§impl Default for RenderPrepOptions
impl Default for RenderPrepOptions
Source§fn default() -> RenderPrepOptions
fn default() -> RenderPrepOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for RenderPrepOptions
impl PartialEq for RenderPrepOptions
impl Copy for RenderPrepOptions
impl StructuralPartialEq for RenderPrepOptions
Auto Trait Implementations§
impl Freeze for RenderPrepOptions
impl RefUnwindSafe for RenderPrepOptions
impl Send for RenderPrepOptions
impl Sync for RenderPrepOptions
impl Unpin for RenderPrepOptions
impl UnsafeUnpin for RenderPrepOptions
impl UnwindSafe for RenderPrepOptions
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