Skip to content

Commit

Permalink
deploy: 0a15f4e
Browse files Browse the repository at this point in the history
  • Loading branch information
bilelmoussaoui committed Oct 19, 2024
1 parent cddbbb4 commit f5fc3ff
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
14 changes: 13 additions & 1 deletion docs/src/libgir/codegen/object.rs.html
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,12 @@
<a href="#570" id="570">570</a>
<a href="#571" id="571">571</a>
<a href="#572" id="572">572</a>
<a href="#573" id="573">573</a>
<a href="#574" id="574">574</a>
<a href="#575" id="575">575</a>
<a href="#576" id="576">576</a>
<a href="#577" id="577">577</a>
<a href="#578" id="578">578</a>
</pre></div><pre class="rust"><code><span class="kw">use </span>std::{
collections::{BTreeMap, HashSet},
io::{<span class="prelude-ty">Result</span>, Write},
Expand All @@ -586,12 +592,13 @@
<span class="kw">use crate</span>::{
analysis::{
<span class="self">self</span>, bounds::BoundType, object::has_builder_properties, record_type::RecordType,
ref_mode::RefMode, rust_type::RustType,
ref_mode::RefMode, rust_type::RustType, safety_assertion_mode::SafetyAssertionMode,
},
env::Env,
library::{<span class="self">self</span>, Nullable},
nameutil,
traits::IntoString,
writer::safety_assertion_mode_to_str,
};

<span class="kw">pub fn </span>generate(w: <span class="kw-2">&amp;mut </span><span class="kw">dyn </span>Write, env: <span class="kw-2">&amp;</span>Env, analysis: <span class="kw-2">&amp;</span>analysis::object::Info) -&gt; <span class="prelude-ty">Result</span>&lt;()&gt; {
Expand Down Expand Up @@ -1028,6 +1035,11 @@
pub fn build(self) -&gt; {name} {{"</span>,
name = analysis.name,
)<span class="question-mark">?</span>;
<span class="macro">writeln!</span>(
w,
<span class="string">"{}"</span>,
safety_assertion_mode_to_str(SafetyAssertionMode::InMainThread)
)<span class="question-mark">?</span>;

<span class="comment">// The split allows us to not have clippy::let_and_return lint disabled
</span><span class="kw">if let </span><span class="prelude-val">Some</span>(code) = analysis.builder_postprocess.as_ref() {
Expand Down
2 changes: 1 addition & 1 deletion docs/src/libgir/gir_version.rs.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="Source of the Rust file `src/gir_version.rs`."><title>gir_version.rs - source</title><script>if(window.location.protocol!=="file:")document.head.insertAdjacentHTML("beforeend","SourceSerif4-Regular-46f98efaafac5295.ttf.woff2,FiraSans-Regular-018c141bf0843ffd.woff2,FiraSans-Medium-8f9a781e4970d388.woff2,SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2,SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2".split(",").map(f=>`<link rel="preload" as="font" type="font/woff2" crossorigin href="../../static.files/${f}">`).join(""))</script><link rel="stylesheet" href="../../static.files/normalize-76eba96aa4d2e634.css"><link rel="stylesheet" href="../../static.files/rustdoc-492a78a4a87dcc01.css"><meta name="rustdoc-vars" data-root-path="../../" data-static-root-path="../../static.files/" data-current-crate="libgir" data-themes="" data-resource-suffix="" data-rustdoc-version="1.82.0 (f6e511eec 2024-10-15)" data-channel="1.82.0" data-search-js="search-a99f1315e7cc5121.js" data-settings-js="settings-4313503d2e1961c2.js" ><script src="../../static.files/storage-118b08c4c78b968e.js"></script><script defer src="../../static.files/src-script-e66d777a5a92e9b2.js"></script><script defer src="../../src-files.js"></script><script defer src="../../static.files/main-921df33f47b8780c.js"></script><noscript><link rel="stylesheet" href="../../static.files/noscript-3b12f09e550e0385.css"></noscript><link rel="alternate icon" type="image/png" href="../../static.files/favicon-32x32-422f7d1d52889060.png"><link rel="icon" type="image/svg+xml" href="../../static.files/favicon-2c020d218678b618.svg"></head><body class="rustdoc src"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="sidebar"><div class="src-sidebar-title"><h2>Files</h2></div></nav><div class="sidebar-resizer"></div><main><rustdoc-search></rustdoc-search><section id="main-content" class="content"><div class="example-wrap"><div data-nosnippet><pre class="src-line-numbers"><a href="#1" id="1">1</a>
</pre></div><pre class="rust"><code><span class="kw">pub const </span>VERSION: <span class="kw-2">&amp;</span>str = <span class="string">"af6703cf6545"</span>;
</pre></div><pre class="rust"><code><span class="kw">pub const </span>VERSION: <span class="kw-2">&amp;</span>str = <span class="string">"0a15f4e10c41"</span>;
</code></pre></div></section></main></body></html>

0 comments on commit f5fc3ff

Please sign in to comment.