Struct SaveLayerRec
#[repr(C)]pub struct SaveLayerRec<'a> { /* private fields */ }Expand description
SaveLayerRec contains the state used to create the layer.
Implementations§
§impl<'a> SaveLayerRec<'a>
impl<'a> SaveLayerRec<'a>
pub fn bounds(self, bounds: &'a Rect) -> SaveLayerRec<'a>
pub fn bounds(self, bounds: &'a Rect) -> SaveLayerRec<'a>
Hints at layer size limit
pub fn paint(self, paint: &'a Handle<SkPaint>) -> SaveLayerRec<'a>
pub fn paint(self, paint: &'a Handle<SkPaint>) -> SaveLayerRec<'a>
Modifies overlay
pub fn backdrop(self, backdrop: &'a RCHandle<SkImageFilter>) -> SaveLayerRec<'a>
pub fn backdrop(self, backdrop: &'a RCHandle<SkImageFilter>) -> SaveLayerRec<'a>
If not None, this triggers the same initialization behavior as setting
[SaveLayerFlags::INIT_WITH_PREVIOUS] on Self::flags: the current layer is copied into
the new layer, rather than initializing the new layer with transparent-black. This is then
filtered by Self::backdrop (respecting the current clip).
pub fn backdrop_tile_mode(
self,
backdrop_tile_mode: SkTileMode,
) -> SaveLayerRec<'a>
pub fn backdrop_tile_mode( self, backdrop_tile_mode: SkTileMode, ) -> SaveLayerRec<'a>
If the layer is initialized with prior content (and/or with a backdrop filter) and this would require sampling outside of the available backdrop, this is the tilemode applied to the boundary of the prior layer’s image.
pub fn color_space(
self,
color_space: &'a RCHandle<SkColorSpace>,
) -> SaveLayerRec<'a>
pub fn color_space( self, color_space: &'a RCHandle<SkColorSpace>, ) -> SaveLayerRec<'a>
If not None, this triggers a color space conversion when the layer is restored. It
will be as if the layer’s contents are drawn in this color space. Filters from
backdrop and paint will be applied in this color space.
pub fn flags(self, flags: SaveLayerFlags) -> SaveLayerRec<'a>
pub fn flags(self, flags: SaveLayerFlags) -> SaveLayerRec<'a>
Preserves LCD text, creates with prior layer contents
Trait Implementations§
§impl Debug for SaveLayerRec<'_>
impl Debug for SaveLayerRec<'_>
§impl Default for SaveLayerRec<'_>
impl Default for SaveLayerRec<'_>
§fn default() -> SaveLayerRec<'_>
fn default() -> SaveLayerRec<'_>
Sets Self::bounds, Self::paint, and Self::backdrop to None. Clears
Self::flags.
Returns empty SaveLayerRec
Auto Trait Implementations§
impl<'a> Freeze for SaveLayerRec<'a>
impl<'a> !RefUnwindSafe for SaveLayerRec<'a>
impl<'a> !Send for SaveLayerRec<'a>
impl<'a> !Sync for SaveLayerRec<'a>
impl<'a> Unpin for SaveLayerRec<'a>
impl<'a> !UnwindSafe for SaveLayerRec<'a>
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§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>
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>
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§impl<N, T> NativeTransmutableWrapper<N> for Twhere
T: NativeTransmutable<N>,
impl<N, T> NativeTransmutableWrapper<N> for Twhere
T: NativeTransmutable<N>,
§impl<T> NoneValue for Twhere
T: Default,
impl<T> NoneValue for Twhere
T: Default,
type NoneType = T
§fn null_value() -> T
fn null_value() -> T
§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
ReadEndian::read_from_little_endian().