pub struct RenderIndicators {
pub external_scripts: usize,
pub inline_scripts: usize,
pub has_lazy_loading: bool,
pub detected_framework: Option<String>,
pub text_content_length: usize,
pub empty_app_container: bool,
}Expand description
Indicators for required rendering
Fields§
§external_scripts: usizeExternal scripts
inline_scripts: usizeInline scripts
has_lazy_loading: boolLazy loading detected
detected_framework: Option<String>Framework detected
text_content_length: usizeText content (characters)
empty_app_container: boolEmpty app/root div
Trait Implementations§
Source§impl Clone for RenderIndicators
impl Clone for RenderIndicators
Source§fn clone(&self) -> RenderIndicators
fn clone(&self) -> RenderIndicators
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 RenderIndicators
impl Debug for RenderIndicators
Source§impl Default for RenderIndicators
impl Default for RenderIndicators
Source§fn default() -> RenderIndicators
fn default() -> RenderIndicators
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RenderIndicators
impl RefUnwindSafe for RenderIndicators
impl Send for RenderIndicators
impl Sync for RenderIndicators
impl Unpin for RenderIndicators
impl UnwindSafe for RenderIndicators
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