Enum oxygengine_composite_renderer::composite_renderer::Command  [−][src]
pub enum Command<'a> {
    None,
    Draw(Renderable<'a>),
    Stroke(Scalar, Renderable<'a>),
    Transform(Scalar, Scalar, Scalar, Scalar, Scalar, Scalar),
    Effect(Effect),
    Alpha(Scalar),
    Filter(Cow<'a, str>),
    Smoothing(bool),
    Store,
    Restore,
}Variants
Draw(Renderable<'a>)Tuple Fields of Draw
0: Renderable<'a>Stroke(Scalar, Renderable<'a>)(line width, renderable)
Tuple Fields of Stroke
0: Scalar1: Renderable<'a>(a, b, c, d, e, f)
Effect(Effect)Tuple Fields of Effect
0: EffectAlpha(Scalar)Tuple Fields of Alpha
0: ScalarSmoothing(bool)Tuple Fields of Smoothing
0: boolTrait Implementations
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
Auto Trait Implementations
impl<'a> RefUnwindSafe for Command<'a>
impl<'a> UnwindSafe for Command<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more