Type Alias glib::object::TransformFn

source ·
type TransformFn<'b> = Option<Box<dyn Fn(&'b Binding, &'b Value) -> Option<Value> + Send + Sync + 'static>>;

Aliased Type§

enum TransformFn<'b> {
    None,
    Some(Box<dyn Fn(&'b Binding, &'b Value) -> Option<Value> + Sync + Send>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(Box<dyn Fn(&'b Binding, &'b Value) -> Option<Value> + Sync + Send>)

Some value of type T.