clutter/auto/
pipeline_node.rs1use crate::PaintNode;
2use glib::translate::*;
3use std::fmt;
4
5glib_wrapper! {
6 pub struct PipelineNode(Object<ffi::ClutterPipelineNode, ffi::ClutterPipelineNodeClass, PipelineNodeClass>) @extends PaintNode;
7
8 match fn {
9 get_type => || ffi::clutter_pipeline_node_get_type(),
10 }
11}
12
13impl PipelineNode {}
14
15pub const NONE_PIPELINE_NODE: Option<&PipelineNode> = None;
16
17impl fmt::Display for PipelineNode {
18 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
19 write!(f, "PipelineNode")
20 }
21}