Struct zng_wgt_style::StyleBuilder
source · pub struct StyleBuilder { /* private fields */ }
Expand description
Represents a style instance.
Use the Style!
widget to declare.
Implementations§
source§impl StyleBuilder
impl StyleBuilder
sourcepub const WIDGET_IMPORTANCE: Importance = _
pub const WIDGET_IMPORTANCE: Importance = _
Importance of style properties set by default in style widgets.
Is Importance::WIDGET - 10
.
sourcepub const INSTANCE_IMPORTANCE: Importance = _
pub const INSTANCE_IMPORTANCE: Importance = _
Importance of style properties set in style instances.
Is Importance::INSTANCE - 10
.
sourcepub const POSITION_OFFSET: u16 = 1u16
pub const POSITION_OFFSET: u16 = 1u16
Negative offset on the position index of style properties.
Is 1
.
sourcepub fn from_builder(wgt: WidgetBuilder) -> StyleBuilder
pub fn from_builder(wgt: WidgetBuilder) -> StyleBuilder
New style from a widget builder.
The importance and position index of properties are adjusted, any custom build or widget build action is ignored.
sourcepub fn into_builder(self) -> WidgetBuilder
pub fn into_builder(self) -> WidgetBuilder
Unwrap the style dynamic widget.
sourcepub fn extend(&mut self, other: StyleBuilder)
pub fn extend(&mut self, other: StyleBuilder)
Override or replace self
with other
.
sourcepub fn is_replace(&self) -> bool
pub fn is_replace(&self) -> bool
if the style removes all contextual properties.
Trait Implementations§
source§impl Clone for StyleBuilder
impl Clone for StyleBuilder
source§fn clone(&self) -> StyleBuilder
fn clone(&self) -> StyleBuilder
Returns a copy 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 StyleBuilder
impl Debug for StyleBuilder
source§impl Default for StyleBuilder
impl Default for StyleBuilder
source§impl From<StyleBuilder> for StyleFn
impl From<StyleBuilder> for StyleFn
source§fn from(style: StyleBuilder) -> Self
fn from(style: StyleBuilder) -> Self
Singleton.
source§impl From<StyleBuilder> for WidgetBuilder
impl From<StyleBuilder> for WidgetBuilder
source§fn from(t: StyleBuilder) -> Self
fn from(t: StyleBuilder) -> Self
Converts to this type from the input type.
source§impl From<WidgetBuilder> for StyleBuilder
impl From<WidgetBuilder> for StyleBuilder
source§fn from(p: WidgetBuilder) -> Self
fn from(p: WidgetBuilder) -> Self
Converts to this type from the input type.
source§impl IntoVar<StyleFn> for StyleBuilder
impl IntoVar<StyleFn> for StyleBuilder
impl IntoValue<StyleFn> for StyleBuilder
Auto Trait Implementations§
impl Freeze for StyleBuilder
impl !RefUnwindSafe for StyleBuilder
impl Send for StyleBuilder
impl Sync for StyleBuilder
impl Unpin for StyleBuilder
impl !UnwindSafe for StyleBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more