pub struct ContextRenderOptions {
pub focus_node_id: Option<String>,
pub token_budget: Option<u32>,
pub max_tier: Option<ResolutionTier>,
pub rehydration_mode: KmpMode,
pub endpoint_hint: EndpointHint,
}Fields§
§focus_node_id: Option<String>§token_budget: Option<u32>§max_tier: Option<ResolutionTier>Maximum tier to render. None means all tiers (backward compatible).
rehydration_mode: KmpModeRehydration mode. Auto lets the kernel choose based on token pressure.
endpoint_hint: EndpointHintWhich endpoint is requesting this render.
Trait Implementations§
Source§impl Clone for ContextRenderOptions
impl Clone for ContextRenderOptions
Source§fn clone(&self) -> ContextRenderOptions
fn clone(&self) -> ContextRenderOptions
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 ContextRenderOptions
impl Debug for ContextRenderOptions
Source§impl Default for ContextRenderOptions
impl Default for ContextRenderOptions
Source§fn default() -> ContextRenderOptions
fn default() -> ContextRenderOptions
Returns the “default value” for a type. Read more
impl Eq for ContextRenderOptions
Source§impl PartialEq for ContextRenderOptions
impl PartialEq for ContextRenderOptions
impl StructuralPartialEq for ContextRenderOptions
Auto Trait Implementations§
impl Freeze for ContextRenderOptions
impl RefUnwindSafe for ContextRenderOptions
impl Send for ContextRenderOptions
impl Sync for ContextRenderOptions
impl Unpin for ContextRenderOptions
impl UnsafeUnpin for ContextRenderOptions
impl UnwindSafe for ContextRenderOptions
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