diff options
Diffstat (limited to 'libsecret/src/auto/schema.rs')
-rw-r--r-- | libsecret/src/auto/schema.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libsecret/src/auto/schema.rs b/libsecret/src/auto/schema.rs new file mode 100644 index 0000000..9889b31 --- /dev/null +++ b/libsecret/src/auto/schema.rs @@ -0,0 +1,15 @@ +// This file was generated by gir (https://github.com/gtk-rs/gir) +// from +// from gir-files (https://github.com/gtk-rs/gir-files.git) +// DO NOT EDIT + +glib::wrapper! { + #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)] + pub struct Schema(Shared<ffi::SecretSchema>); + + match fn { + ref => |ptr| ffi::secret_schema_ref(ptr), + unref => |ptr| ffi::secret_schema_unref(ptr), + type_ => || ffi::secret_schema_get_type(), + } +} |