rust-bindings: Regenerate
authorColin Walters <walters@verbum.org>
Fri, 17 Mar 2023 15:54:14 +0000 (11:54 -0400)
committerColin Walters <walters@verbum.org>
Fri, 17 Mar 2023 15:54:14 +0000 (11:54 -0400)
This picks up more of tintou's recent changes.

rust-bindings/src/auto/functions.rs
rust-bindings/src/auto/gpg_verify_result.rs
rust-bindings/src/auto/mutable_tree.rs
rust-bindings/src/auto/remote.rs
rust-bindings/src/auto/repo_file.rs
rust-bindings/src/auto/se_policy.rs
rust-bindings/src/auto/versions.txt
rust-bindings/sys/src/auto/versions.txt
rust-bindings/sys/src/lib.rs

index 9f8952170dd16af386d66eb1d01c42531b15df9b..56c40835c296fc4a1370056dc8dfdefc5cd28f23 100644 (file)
@@ -82,7 +82,7 @@ pub fn commit_get_object_sizes(commit_variant: &glib::Variant) -> Result<Vec<Com
 }
 
 #[doc(alias = "ostree_commit_get_parent")]
-pub fn commit_get_parent(commit_variant: &glib::Variant) -> glib::GString {
+pub fn commit_get_parent(commit_variant: &glib::Variant) -> Option<glib::GString> {
     unsafe {
         from_glib_full(ffi::ostree_commit_get_parent(commit_variant.to_glib_none().0))
     }
index f4c139fc6a6d3f6724eab0b2dba49d0f4be7dead..869d51716aac41e5162b66536917412a5e26fec4 100644 (file)
@@ -34,7 +34,7 @@ impl GpgVerifyResult {
     }
 
     //#[doc(alias = "ostree_gpg_verify_result_get")]
-    //pub fn get(&self, signature_index: u32, attrs: /*Unimplemented*/&CArray TypeId { ns_id: 1, id: 29 }) -> glib::Variant {
+    //pub fn get(&self, signature_index: u32, attrs: /*Unimplemented*/&CArray TypeId { ns_id: 1, id: 19 }) -> glib::Variant {
     //    unsafe { TODO: call ffi:ostree_gpg_verify_result_get() }
     //}
 
index d70941c7c9ede851dde722ceba3f9877c29f5816..88602ed4c8c113b92797aaf0100db444d91e73c5 100644 (file)
@@ -115,7 +115,7 @@ impl MutableTree {
 
     //#[doc(alias = "ostree_mutable_tree_get_subdirs")]
     //#[doc(alias = "get_subdirs")]
-    //pub fn subdirs(&self) -> /*Unknown conversion*//*Unimplemented*/HashTable TypeId { ns_id: 0, id: 28 }/TypeId { ns_id: 1, id: 42 } {
+    //pub fn subdirs(&self) -> /*Unknown conversion*//*Unimplemented*/HashTable TypeId { ns_id: 0, id: 28 }/TypeId { ns_id: 1, id: 24 } {
     //    unsafe { TODO: call ffi:ostree_mutable_tree_get_subdirs() }
     //}
 
index 9b80a8c3bc01b50deb156078dafe06046a10b9f8..d0925ae894e6b05dd226a181ea4ab316e8d0dad9 100644 (file)
@@ -27,7 +27,7 @@ impl Remote {
 
     #[doc(alias = "ostree_remote_get_url")]
     #[doc(alias = "get_url")]
-    pub fn url(&self) -> glib::GString {
+    pub fn url(&self) -> Option<glib::GString> {
         unsafe {
             from_glib_full(ffi::ostree_remote_get_url(self.to_glib_none().0))
         }
index 31fe363c8daee32b0ecacbe2b31a5c0f72e8644c..d480e76326f4bdce0d37a73725d0757b06965d7d 100644 (file)
@@ -77,28 +77,28 @@ impl RepoFile {
     }
 
     #[doc(alias = "ostree_repo_file_tree_get_contents")]
-    pub fn tree_get_contents(&self) -> glib::Variant {
+    pub fn tree_get_contents(&self) -> Option<glib::Variant> {
         unsafe {
             from_glib_full(ffi::ostree_repo_file_tree_get_contents(self.to_glib_none().0))
         }
     }
 
     #[doc(alias = "ostree_repo_file_tree_get_contents_checksum")]
-    pub fn tree_get_contents_checksum(&self) -> glib::GString {
+    pub fn tree_get_contents_checksum(&self) -> Option<glib::GString> {
         unsafe {
             from_glib_none(ffi::ostree_repo_file_tree_get_contents_checksum(self.to_glib_none().0))
         }
     }
 
     #[doc(alias = "ostree_repo_file_tree_get_metadata")]
-    pub fn tree_get_metadata(&self) -> glib::Variant {
+    pub fn tree_get_metadata(&self) -> Option<glib::Variant> {
         unsafe {
             from_glib_full(ffi::ostree_repo_file_tree_get_metadata(self.to_glib_none().0))
         }
     }
 
     #[doc(alias = "ostree_repo_file_tree_get_metadata_checksum")]
-    pub fn tree_get_metadata_checksum(&self) -> glib::GString {
+    pub fn tree_get_metadata_checksum(&self) -> Option<glib::GString> {
         unsafe {
             from_glib_none(ffi::ostree_repo_file_tree_get_metadata_checksum(self.to_glib_none().0))
         }
index 131993262bdbc77b2aa33bb311c54f7b21c063b2..8bbb9ece92934bcc9c87942633f9e9f347c54515 100644 (file)
@@ -55,7 +55,7 @@ impl SePolicy {
     #[cfg_attr(feature = "dox", doc(cfg(feature = "v2016_5")))]
     #[doc(alias = "ostree_sepolicy_get_csum")]
     #[doc(alias = "get_csum")]
-    pub fn csum(&self) -> glib::GString {
+    pub fn csum(&self) -> Option<glib::GString> {
         unsafe {
             from_glib_none(ffi::ostree_sepolicy_get_csum(self.to_glib_none().0))
         }
@@ -83,7 +83,7 @@ impl SePolicy {
 
     #[doc(alias = "ostree_sepolicy_get_path")]
     #[doc(alias = "get_path")]
-    pub fn path(&self) -> gio::File {
+    pub fn path(&self) -> Option<gio::File> {
         unsafe {
             from_glib_none(ffi::ostree_sepolicy_get_path(self.to_glib_none().0))
         }
index 0e56c33df2ef3fd6d9920ffbc99d9e7c16256424..8135982b31b2bd8720a094bfb555d23890559174 100644 (file)
@@ -1,2 +1,2 @@
 Generated by gir (https://github.com/gtk-rs/gir @ 0eeebbdf9d4d)
-from gir-files (@ 1b758c141dda)
+from gir-files (@ 00c41eacd26a)
index 0e56c33df2ef3fd6d9920ffbc99d9e7c16256424..8135982b31b2bd8720a094bfb555d23890559174 100644 (file)
@@ -1,2 +1,2 @@
 Generated by gir (https://github.com/gtk-rs/gir @ 0eeebbdf9d4d)
-from gir-files (@ 1b758c141dda)
+from gir-files (@ 00c41eacd26a)
index fe17c5d5494812b20f2c7a8724fd223c36f7ff1c..fb0d660da4fec8fa881b0f53766080b519e21642 100644 (file)
@@ -309,62 +309,6 @@ impl ::std::fmt::Debug for OstreeAsyncProgressClass {
     }
 }
 
-#[repr(C)]
-pub struct _OstreeBootloader {
-    _data: [u8; 0],
-    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
-}
-
-pub type OstreeBootloader = *mut _OstreeBootloader;
-
-#[repr(C)]
-pub struct _OstreeBootloaderAboot {
-    _data: [u8; 0],
-    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
-}
-
-pub type OstreeBootloaderAboot = *mut _OstreeBootloaderAboot;
-
-#[repr(C)]
-pub struct _OstreeBootloaderGrub2 {
-    _data: [u8; 0],
-    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
-}
-
-pub type OstreeBootloaderGrub2 = *mut _OstreeBootloaderGrub2;
-
-#[repr(C)]
-pub struct _OstreeBootloaderSyslinux {
-    _data: [u8; 0],
-    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
-}
-
-pub type OstreeBootloaderSyslinux = *mut _OstreeBootloaderSyslinux;
-
-#[repr(C)]
-pub struct _OstreeBootloaderUboot {
-    _data: [u8; 0],
-    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
-}
-
-pub type OstreeBootloaderUboot = *mut _OstreeBootloaderUboot;
-
-#[repr(C)]
-pub struct _OstreeBootloaderZipl {
-    _data: [u8; 0],
-    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
-}
-
-pub type OstreeBootloaderZipl = *mut _OstreeBootloaderZipl;
-
-#[repr(C)]
-pub struct _OstreeChecksumInputStreamPrivate {
-    _data: [u8; 0],
-    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
-}
-
-pub type OstreeChecksumInputStreamPrivate = *mut _OstreeChecksumInputStreamPrivate;
-
 #[derive(Copy, Clone)]
 #[repr(C)]
 pub struct OstreeCollectionRef {
@@ -465,14 +409,6 @@ impl ::std::fmt::Debug for OstreeDiffItem {
     }
 }
 
-#[repr(C)]
-pub struct _OstreeGpgVerifier {
-    _data: [u8; 0],
-    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
-}
-
-pub type OstreeGpgVerifier = *mut _OstreeGpgVerifier;
-
 #[repr(C)]
 pub struct _OstreeKernelArgs {
     _data: [u8; 0],
@@ -489,30 +425,6 @@ pub struct _OstreeKernelArgsEntry {
 
 pub type OstreeKernelArgsEntry = *mut _OstreeKernelArgsEntry;
 
-#[repr(C)]
-pub struct _OstreeLibarchiveInputStreamPrivate {
-    _data: [u8; 0],
-    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
-}
-
-pub type OstreeLibarchiveInputStreamPrivate = *mut _OstreeLibarchiveInputStreamPrivate;
-
-#[repr(C)]
-pub struct _OstreeLzmaCompressor {
-    _data: [u8; 0],
-    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
-}
-
-pub type OstreeLzmaCompressor = *mut _OstreeLzmaCompressor;
-
-#[repr(C)]
-pub struct _OstreeLzmaDecompressor {
-    _data: [u8; 0],
-    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
-}
-
-pub type OstreeLzmaDecompressor = *mut _OstreeLzmaDecompressor;
-
 #[derive(Copy, Clone)]
 #[repr(C)]
 pub struct OstreeMutableTreeClass {
@@ -699,14 +611,6 @@ impl ::std::fmt::Debug for OstreeRepoFileClass {
     }
 }
 
-#[repr(C)]
-pub struct _OstreeRepoFileEnumerator {
-    _data: [u8; 0],
-    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
-}
-
-pub type OstreeRepoFileEnumerator = *mut _OstreeRepoFileEnumerator;
-
 #[derive(Copy, Clone)]
 #[repr(C)]
 pub struct OstreeRepoFinderAvahiClass {
@@ -1665,12 +1569,6 @@ extern "C" {
         error: *mut *mut glib::GError,
     ) -> gboolean;
 
-    //=========================================================================
-    // OstreeChecksumInputStream
-    //=========================================================================
-    pub fn ostree_checksum_input_stream_get_type() -> GType;
-    //pub fn ostree_checksum_input_stream_new(stream: *mut gio::GInputStream, checksum: *mut glib::GChecksum) -> /*Ignored*/*mut OstreeChecksumInputStream;
-
     //=========================================================================
     // OstreeContentWriter
     //=========================================================================
@@ -3545,38 +3443,6 @@ extern "C" {
         out_success_message: *mut *mut c_char,
         error: *mut *mut glib::GError,
     ) -> gboolean;
-    pub fn ostree_sign_dummy_add_pk(
-        self_: *mut OstreeSign,
-        key: *mut glib::GVariant,
-        error: *mut *mut glib::GError,
-    ) -> gboolean;
-    pub fn ostree_sign_dummy_data(
-        self_: *mut OstreeSign,
-        data: *mut glib::GBytes,
-        signature: *mut *mut glib::GBytes,
-        cancellable: *mut gio::GCancellable,
-        error: *mut *mut glib::GError,
-    ) -> gboolean;
-    pub fn ostree_sign_dummy_data_verify(
-        self_: *mut OstreeSign,
-        data: *mut glib::GBytes,
-        signatures: *mut glib::GVariant,
-        success_message: *mut *mut c_char,
-        error: *mut *mut glib::GError,
-    ) -> gboolean;
-    pub fn ostree_sign_dummy_get_name(self_: *mut OstreeSign) -> *const c_char;
-    pub fn ostree_sign_dummy_metadata_format(self_: *mut OstreeSign) -> *const c_char;
-    pub fn ostree_sign_dummy_metadata_key(self_: *mut OstreeSign) -> *const c_char;
-    pub fn ostree_sign_dummy_set_pk(
-        self_: *mut OstreeSign,
-        key: *mut glib::GVariant,
-        error: *mut *mut glib::GError,
-    ) -> gboolean;
-    pub fn ostree_sign_dummy_set_sk(
-        self_: *mut OstreeSign,
-        key: *mut glib::GVariant,
-        error: *mut *mut glib::GError,
-    ) -> gboolean;
     pub fn ostree_sign_ed25519_add_pk(
         self_: *mut OstreeSign,
         public_key: *mut glib::GVariant,