pub enum BlurEdgeMode {
Transparent,
Clamp,
}Variants§
Transparent
Pixels sampled outside the affected region are treated as transparent.
Clamp
Pixels sampled outside the affected region clamp to the nearest edge pixel.
Trait Implementations§
Source§impl Clone for BlurEdgeMode
impl Clone for BlurEdgeMode
Source§fn clone(&self) -> BlurEdgeMode
fn clone(&self) -> BlurEdgeMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BlurEdgeMode
Source§impl Debug for BlurEdgeMode
impl Debug for BlurEdgeMode
impl Eq for BlurEdgeMode
Source§impl Hash for BlurEdgeMode
impl Hash for BlurEdgeMode
Source§impl PartialEq for BlurEdgeMode
impl PartialEq for BlurEdgeMode
impl StructuralPartialEq for BlurEdgeMode
Auto Trait Implementations§
impl Freeze for BlurEdgeMode
impl RefUnwindSafe for BlurEdgeMode
impl Send for BlurEdgeMode
impl Sync for BlurEdgeMode
impl Unpin for BlurEdgeMode
impl UnsafeUnpin for BlurEdgeMode
impl UnwindSafe for BlurEdgeMode
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