pub struct FeMorphology {
pub in: Option<Variable<FeIn>>,
pub mode: Option<Variable<FeMorphologyOperator>>,
pub radius: Option<Variable<NumberOptNumber>>,
pub x: Option<Variable<Length>>,
pub y: Option<Variable<Length>>,
pub width: Option<Variable<Length>>,
pub height: Option<Variable<Length>>,
pub result: Option<Variable<String>>,
}Expand description
This filter primitive performs “fattening” or “thinning” of artwork. It is particularly useful for fattening or thinning an alpha channel.
See feMorphology
Fields§
§in: Option<Variable<FeIn>>§mode: Option<Variable<FeMorphologyOperator>>§radius: Option<Variable<NumberOptNumber>>§x: Option<Variable<Length>>§y: Option<Variable<Length>>§width: Option<Variable<Length>>§height: Option<Variable<Length>>§result: Option<Variable<String>>Trait Implementations§
Source§impl Clone for FeMorphology
impl Clone for FeMorphology
Source§fn clone(&self) -> FeMorphology
fn clone(&self) -> FeMorphology
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FeMorphology
impl Debug for FeMorphology
Source§impl<'de> Deserialize<'de> for FeMorphology
impl<'de> Deserialize<'de> for FeMorphology
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Deserialize for FeMorphology
impl Deserialize for FeMorphology
type Value = FeMorphology
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer,
Derserialize this value from given
derserializer.Source§impl From<FeMorphology> for Leaf
impl From<FeMorphology> for Leaf
Source§fn from(value: FeMorphology) -> Self
fn from(value: FeMorphology) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FeMorphology
impl PartialEq for FeMorphology
Source§impl PartialOrd for FeMorphology
impl PartialOrd for FeMorphology
Source§impl Serialize for FeMorphology
impl Serialize for FeMorphology
Source§impl Serialize for FeMorphology
impl Serialize for FeMorphology
impl StructuralPartialEq for FeMorphology
Auto Trait Implementations§
impl Freeze for FeMorphology
impl RefUnwindSafe for FeMorphology
impl Send for FeMorphology
impl Sync for FeMorphology
impl Unpin for FeMorphology
impl UnwindSafe for FeMorphology
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