From cddbbb4b4177c255bd6690169c467463257532e4 Mon Sep 17 00:00:00 2001 From: bilelmoussaoui Date: Fri, 18 Oct 2024 17:17:30 +0000 Subject: [PATCH] deploy: af6703cf65453810c46003233c916896d36e8f24 --- docs/libgir/library/struct.Library.html | 2 +- docs/src/libgir/gir_version.rs.html | 2 +- docs/src/libgir/parser.rs.html | 8 +++++++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/libgir/library/struct.Library.html b/docs/libgir/library/struct.Library.html index d28563175..b36f66bae 100644 --- a/docs/libgir/library/struct.Library.html +++ b/docs/libgir/library/struct.Library.html @@ -5,7 +5,7 @@ &'a self, ns_id: u16, ) -> Box<dyn Iterator<Item = (TypeId, &Type)> + 'a>

Types from a single namespace in alphabetical order.

-
source

pub fn is_crate(&self, crate_name: &str) -> bool

source

pub fn is_glib_crate(&self) -> bool

source§

impl Library

source

pub fn postprocessing(&mut self, config: &Config)

source§

impl Library

source

pub fn preprocessing(&mut self, work_mode: WorkMode)

source§

impl Library

source

pub fn read_file<P: AsRef<Path>>( +

source

pub fn is_crate(&self, crate_name: &str) -> bool

source

pub fn is_glib_crate(&self) -> bool

source§

impl Library

source

pub fn postprocessing(&mut self, config: &Config)

source§

impl Library

source

pub fn preprocessing(&mut self, work_mode: WorkMode)

source§

impl Library

source

pub fn read_file<P: AsRef<Path>>( &mut self, dirs: &[P], libs: &mut Vec<String>, diff --git a/docs/src/libgir/gir_version.rs.html b/docs/src/libgir/gir_version.rs.html index 120a9ff47..6bcc1d995 100644 --- a/docs/src/libgir/gir_version.rs.html +++ b/docs/src/libgir/gir_version.rs.html @@ -1,3 +1,3 @@ gir_version.rs - source
1
-
pub const VERSION: &str = "eff839d4745d";
+
pub const VERSION: &str = "af6703cf6545";
 

\ No newline at end of file diff --git a/docs/src/libgir/parser.rs.html b/docs/src/libgir/parser.rs.html index 2f1869e21..f5e5e63e4 100644 --- a/docs/src/libgir/parser.rs.html +++ b/docs/src/libgir/parser.rs.html @@ -1577,6 +1577,9 @@ 1577 1578 1579 +1580 +1581 +1582
use std::{
     path::{Path, PathBuf},
     str::FromStr,
@@ -1718,7 +1721,9 @@
                 "function" => self.read_global_function(parser, ns_id, elem),
                 "constant" => self.read_constant(parser, ns_id, elem),
                 "alias" => self.read_alias(parser, ns_id, elem),
-                "boxed" | "function-macro" | "docsection" => parser.ignore_element(),
+                "boxed" | "function-macro" | "docsection" | "function-inline" => {
+                    parser.ignore_element()
+                }
                 _ => {
                     warn!("<{} name={:?}>", elem.name(), elem.attr("name"));
                     parser.ignore_element()
@@ -1965,6 +1970,7 @@
             "doc-deprecated" => parser.text().map(|t| doc_deprecated = Some(t)),
             "source-position" => parser.ignore_element(),
             "attribute" => parser.ignore_element(),
+            "method-inline" => parser.ignore_element(),
             _ => Err(parser.unexpected_element(elem)),
         })?;