pub struct ThemeExplainReport {
pub package: String,
pub route: Option<String>,
pub cache_key: String,
pub runtime_decision: String,
pub token_decision: String,
pub fallback_decision: String,
pub validation: ThemeValidationReport,
pub manifest: ThemeManifestFragment,
pub output: ThemeOutputReport,
pub notes: Vec<String>,
}Fields§
§package: String§route: Option<String>§cache_key: String§runtime_decision: String§token_decision: String§fallback_decision: String§validation: ThemeValidationReport§manifest: ThemeManifestFragment§output: ThemeOutputReport§notes: Vec<String>Trait Implementations§
Source§impl Clone for ThemeExplainReport
impl Clone for ThemeExplainReport
Source§fn clone(&self) -> ThemeExplainReport
fn clone(&self) -> ThemeExplainReport
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 ThemeExplainReport
impl Debug for ThemeExplainReport
Source§impl<'de> Deserialize<'de> for ThemeExplainReport
impl<'de> Deserialize<'de> for ThemeExplainReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ThemeExplainReport
Source§impl PartialEq for ThemeExplainReport
impl PartialEq for ThemeExplainReport
Source§fn eq(&self, other: &ThemeExplainReport) -> bool
fn eq(&self, other: &ThemeExplainReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ThemeExplainReport
impl Serialize for ThemeExplainReport
impl StructuralPartialEq for ThemeExplainReport
Auto Trait Implementations§
impl Freeze for ThemeExplainReport
impl RefUnwindSafe for ThemeExplainReport
impl Send for ThemeExplainReport
impl Sync for ThemeExplainReport
impl Unpin for ThemeExplainReport
impl UnsafeUnpin for ThemeExplainReport
impl UnwindSafe for ThemeExplainReport
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