gstreamer_validate/auto/
action_type.rs1use crate::ffi;
7
8glib::wrapper! {
9    #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
10    pub struct ActionType(Boxed<ffi::GstValidateActionType>);
11
12    match fn {
13        copy => |ptr| glib::gobject_ffi::g_boxed_copy(ffi::gst_validate_action_type_get_type(), ptr as *mut _) as *mut ffi::GstValidateActionType,
14        free => |ptr| glib::gobject_ffi::g_boxed_free(ffi::gst_validate_action_type_get_type(), ptr as *mut _),
15        type_ => || ffi::gst_validate_action_type_get_type(),
16    }
17}
18
19unsafe impl Send for ActionType {}
20unsafe impl Sync for ActionType {}