pub struct WindowClassAppearance<B, I, C> {
pub background_brush: Option<B>,
pub icon: Option<I>,
pub cursor: Option<C>,
}
Available on crate feature
ui
only.Fields§
§background_brush: Option<B>
§icon: Option<I>
§cursor: Option<C>
Implementations§
Trait Implementations§
Source§impl<B: Clone, I: Clone, C: Clone> Clone for WindowClassAppearance<B, I, C>
impl<B: Clone, I: Clone, C: Clone> Clone for WindowClassAppearance<B, I, C>
Source§fn clone(&self) -> WindowClassAppearance<B, I, C>
fn clone(&self) -> WindowClassAppearance<B, I, C>
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<B, I, C> Freeze for WindowClassAppearance<B, I, C>
impl<B, I, C> RefUnwindSafe for WindowClassAppearance<B, I, C>
impl<B, I, C> Send for WindowClassAppearance<B, I, C>
impl<B, I, C> Sync for WindowClassAppearance<B, I, C>
impl<B, I, C> Unpin for WindowClassAppearance<B, I, C>
impl<B, I, C> UnwindSafe for WindowClassAppearance<B, I, C>
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