pub struct IsolationModeHighlightConfigBuilder { /* private fields */ }Expand description
Builder for IsolationModeHighlightConfig.
Implementations§
Source§impl IsolationModeHighlightConfigBuilder
impl IsolationModeHighlightConfigBuilder
Sourcepub fn resizer_color<VALUE: Into<Rgba>>(&mut self, value: VALUE) -> &mut Self
pub fn resizer_color<VALUE: Into<Rgba>>(&mut self, value: VALUE) -> &mut Self
The fill color of the resizers (default: transparent).
Sourcepub fn resizer_handle_color<VALUE: Into<Rgba>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn resizer_handle_color<VALUE: Into<Rgba>>( &mut self, value: VALUE, ) -> &mut Self
The fill color for resizer handles (default: transparent).
Sourcepub fn mask_color<VALUE: Into<Rgba>>(&mut self, value: VALUE) -> &mut Self
pub fn mask_color<VALUE: Into<Rgba>>(&mut self, value: VALUE) -> &mut Self
The fill color for the mask covering non-isolated elements (default: transparent).
Sourcepub fn build(
&self,
) -> Result<IsolationModeHighlightConfig, IsolationModeHighlightConfigBuilderError>
pub fn build( &self, ) -> Result<IsolationModeHighlightConfig, IsolationModeHighlightConfigBuilderError>
Trait Implementations§
Source§impl Clone for IsolationModeHighlightConfigBuilder
impl Clone for IsolationModeHighlightConfigBuilder
Source§fn clone(&self) -> IsolationModeHighlightConfigBuilder
fn clone(&self) -> IsolationModeHighlightConfigBuilder
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 moreAuto Trait Implementations§
impl Freeze for IsolationModeHighlightConfigBuilder
impl RefUnwindSafe for IsolationModeHighlightConfigBuilder
impl Send for IsolationModeHighlightConfigBuilder
impl Sync for IsolationModeHighlightConfigBuilder
impl Unpin for IsolationModeHighlightConfigBuilder
impl UnsafeUnpin for IsolationModeHighlightConfigBuilder
impl UnwindSafe for IsolationModeHighlightConfigBuilder
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