pub enum ImageKind {
Image(ImageKind),
Use(Node),
}
Expand description
Kind of the feImage
data.
Variants§
Image(ImageKind)
An image data.
Use(Node)
An SVG node.
Isn’t inside a dummy group like clip, mask and pattern because
feImage
can reference only a single element.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for ImageKind
impl !Send for ImageKind
impl !Sync for ImageKind
impl Unpin for ImageKind
impl !UnwindSafe for ImageKind
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