pub struct InternerUpdates {Show 17 fields
pub clip: UpdateList<<ClipIntern as Internable>::Key>,
pub prim: UpdateList<<PrimitiveKeyKind as Internable>::Key>,
pub normal_border: UpdateList<<NormalBorderPrim as Internable>::Key>,
pub image_border: UpdateList<<ImageBorder as Internable>::Key>,
pub image: UpdateList<<Image as Internable>::Key>,
pub yuv_image: UpdateList<<YuvImage as Internable>::Key>,
pub line_decoration: UpdateList<<LineDecoration as Internable>::Key>,
pub linear_grad: UpdateList<<LinearGradient as Internable>::Key>,
pub radial_grad: UpdateList<<RadialGradient as Internable>::Key>,
pub conic_grad: UpdateList<<ConicGradient as Internable>::Key>,
pub picture: UpdateList<<Picture as Internable>::Key>,
pub text_run: UpdateList<<TextRun as Internable>::Key>,
pub filter_data: UpdateList<<FilterDataIntern as Internable>::Key>,
pub backdrop_capture: UpdateList<<BackdropCapture as Internable>::Key>,
pub backdrop_render: UpdateList<<BackdropRender as Internable>::Key>,
pub polygon: UpdateList<<PolygonIntern as Internable>::Key>,
pub box_shadow: UpdateList<<BoxShadow as Internable>::Key>,
}Fields§
§clip: UpdateList<<ClipIntern as Internable>::Key>§prim: UpdateList<<PrimitiveKeyKind as Internable>::Key>§normal_border: UpdateList<<NormalBorderPrim as Internable>::Key>§image_border: UpdateList<<ImageBorder as Internable>::Key>§image: UpdateList<<Image as Internable>::Key>§yuv_image: UpdateList<<YuvImage as Internable>::Key>§line_decoration: UpdateList<<LineDecoration as Internable>::Key>§linear_grad: UpdateList<<LinearGradient as Internable>::Key>§radial_grad: UpdateList<<RadialGradient as Internable>::Key>§conic_grad: UpdateList<<ConicGradient as Internable>::Key>§picture: UpdateList<<Picture as Internable>::Key>§text_run: UpdateList<<TextRun as Internable>::Key>§filter_data: UpdateList<<FilterDataIntern as Internable>::Key>§backdrop_capture: UpdateList<<BackdropCapture as Internable>::Key>§backdrop_render: UpdateList<<BackdropRender as Internable>::Key>§polygon: UpdateList<<PolygonIntern as Internable>::Key>§box_shadow: UpdateList<<BoxShadow as Internable>::Key>Auto Trait Implementations§
impl Freeze for InternerUpdates
impl RefUnwindSafe for InternerUpdates
impl Send for InternerUpdates
impl Sync for InternerUpdates
impl Unpin for InternerUpdates
impl UnsafeUnpin for InternerUpdates
impl UnwindSafe for InternerUpdates
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> 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