pub struct NormalizedConfig {
pub config: WidgetConfig,
pub degraded: Vec<String>,
}Expand description
Result of normalize: config with resolved defaults + recorded degradations.
Fields§
§config: WidgetConfigConfig ready to serialize into the store.
degraded: Vec<String>Capability degradations applied / noted (canvas.path, image.url, …).
Trait Implementations§
Source§impl Clone for NormalizedConfig
impl Clone for NormalizedConfig
Source§fn clone(&self) -> NormalizedConfig
fn clone(&self) -> NormalizedConfig
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 moreAuto Trait Implementations§
impl Freeze for NormalizedConfig
impl RefUnwindSafe for NormalizedConfig
impl Send for NormalizedConfig
impl Sync for NormalizedConfig
impl Unpin for NormalizedConfig
impl UnsafeUnpin for NormalizedConfig
impl UnwindSafe for NormalizedConfig
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