pub struct UiPatch {
pub chrome: ChromeRefinement,
pub layout: LayoutRefinement,
}Expand description
Aggregated authoring patch applied by UiBuilder.
This is an ecosystem-only authoring surface (see ADR 0160). It intentionally composes:
- control chrome patches (
ChromeRefinement) - layout-affecting patches (
LayoutRefinement)
Fields§
§chrome: ChromeRefinement§layout: LayoutRefinementImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UiPatch
impl RefUnwindSafe for UiPatch
impl Send for UiPatch
impl Sync for UiPatch
impl Unpin for UiPatch
impl UnsafeUnpin for UiPatch
impl UnwindSafe for UiPatch
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