struct Image {
image: Rc<Pixmap>,
region: IntRect,
color_space: ColorInterpolation,
}Fields§
§image: Rc<Pixmap>Filter primitive result.
All images have the same size which is equal to the current filter region.
region: IntRectImage’s region that has actual data.
Region is in global coordinates and not in image one.
Image’s content outside this region will be transparent/cleared.
Currently used only for feTile.
color_space: ColorInterpolationThe current color space.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Image
impl RefUnwindSafe for Image
impl !Send for Image
impl !Sync for Image
impl Unpin for Image
impl UnwindSafe for Image
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