197 lines
24 KiB
HTML
197 lines
24 KiB
HTML
<!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="API documentation for the Rust `Type` enum in crate `glib`.">
|
||
<meta name="keywords" content="rust, rustlang, rust-lang, Type">
|
||
|
||
<title>glib::types::Type - Rust</title>
|
||
|
||
<link rel="stylesheet" type="text/css" href="../../normalize.css">
|
||
<link rel="stylesheet" type="text/css" href="../../rustdoc.css">
|
||
<link rel="stylesheet" type="text/css" href="../../main.css">
|
||
|
||
|
||
|
||
|
||
</head>
|
||
<body class="rustdoc enum">
|
||
<!--[if lte IE 8]>
|
||
<div class="warning">
|
||
This old browser is unsupported and will most likely display funky
|
||
things.
|
||
</div>
|
||
<![endif]-->
|
||
|
||
|
||
|
||
<nav class="sidebar">
|
||
|
||
<p class='location'>Enum Type</p><div class="block items"><a class="sidebar-title" href="#variants">Variants</a><div class="sidebar-links"><a href="#variant.Invalid">Invalid</a><a href="#variant.Unit">Unit</a><a href="#variant.I8">I8</a><a href="#variant.U8">U8</a><a href="#variant.Bool">Bool</a><a href="#variant.I32">I32</a><a href="#variant.U32">U32</a><a href="#variant.ILong">ILong</a><a href="#variant.ULong">ULong</a><a href="#variant.I64">I64</a><a href="#variant.U64">U64</a><a href="#variant.F32">F32</a><a href="#variant.F64">F64</a><a href="#variant.String">String</a><a href="#variant.Pointer">Pointer</a><a href="#variant.Variant">Variant</a><a href="#variant.BaseInterface">BaseInterface</a><a href="#variant.BaseEnum">BaseEnum</a><a href="#variant.BaseFlags">BaseFlags</a><a href="#variant.BaseBoxed">BaseBoxed</a><a href="#variant.BaseParamSpec">BaseParamSpec</a><a href="#variant.BaseObject">BaseObject</a><a href="#variant.Other">Other</a></div><a class="sidebar-title" href="#methods">Methods</a><div class="sidebar-links"><a href="#method.name">name</a></div><a class="sidebar-title" href="#implementations">Trait Implementations</a><div class="sidebar-links"><a href="#impl-Clone">Clone</a><a href="#impl-Copy">Copy</a><a href="#impl-PartialEq">PartialEq</a><a href="#impl-Eq">Eq</a><a href="#impl-Debug">Debug</a><a href="#impl-Display">Display</a><a href="#impl-FromGlib%3CGType%3E">FromGlib<GType></a><a href="#impl-ToGlib">ToGlib</a></div></div><p class='location'><a href='../index.html'>glib</a>::<wbr><a href='index.html'>types</a></p><script>window.sidebarCurrent = {name: 'Type', ty: 'enum', relpath: ''};</script><script defer src="sidebar-items.js"></script>
|
||
</nav>
|
||
|
||
<nav class="sub">
|
||
<form class="search-form js-only">
|
||
<div class="search-container">
|
||
<input class="search-input" name="search"
|
||
autocomplete="off"
|
||
placeholder="Click or press ‘S’ to search, ‘?’ for more options…"
|
||
type="search">
|
||
</div>
|
||
</form>
|
||
</nav>
|
||
|
||
<section id='main' class="content">
|
||
<h1 class='fqn'><span class='in-band'>Enum <a href='../index.html'>glib</a>::<wbr><a href='index.html'>types</a>::<wbr><a class="enum" href=''>Type</a></span><span class='out-of-band'><span id='render-detail'>
|
||
<a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">
|
||
[<span class='inner'>−</span>]
|
||
</a>
|
||
</span><a class='srclink' href='../../src/glib/types.rs.html#15-62' title='goto source code'>[src]</a></span></h1>
|
||
<pre class='rust enum'>pub enum Type {
|
||
Invalid,
|
||
Unit,
|
||
I8,
|
||
U8,
|
||
Bool,
|
||
I32,
|
||
U32,
|
||
ILong,
|
||
ULong,
|
||
I64,
|
||
U64,
|
||
F32,
|
||
F64,
|
||
String,
|
||
Pointer,
|
||
Variant,
|
||
BaseInterface,
|
||
BaseEnum,
|
||
BaseFlags,
|
||
BaseBoxed,
|
||
BaseParamSpec,
|
||
BaseObject,
|
||
Other(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>),
|
||
}</pre><div class='docblock'><p>A GLib or GLib-based library type</p>
|
||
</div><h2 id='variants' class='variants small-section-header'>
|
||
Variants<a href='#variants' class='anchor'></a></h2>
|
||
<span id="variant.Invalid" class="variant small-section-header"><a href="#variant.Invalid" class="anchor field"></a><span id='Invalid.v' class='invisible'><code>Invalid</code></span></span><div class='docblock'><p>An invalid <code>Type</code> used as error return value in some functions</p>
|
||
</div><span id="variant.Unit" class="variant small-section-header"><a href="#variant.Unit" class="anchor field"></a><span id='Unit.v' class='invisible'><code>Unit</code></span></span><div class='docblock'><p>The fundamental type corresponding to the unit type <code>()</code></p>
|
||
</div><span id="variant.I8" class="variant small-section-header"><a href="#variant.I8" class="anchor field"></a><span id='I8.v' class='invisible'><code>I8</code></span></span><div class='docblock'><p>The fundamental type corresponding to <code>i8</code></p>
|
||
</div><span id="variant.U8" class="variant small-section-header"><a href="#variant.U8" class="anchor field"></a><span id='U8.v' class='invisible'><code>U8</code></span></span><div class='docblock'><p>The fundamental type corresponding to <code>u8</code></p>
|
||
</div><span id="variant.Bool" class="variant small-section-header"><a href="#variant.Bool" class="anchor field"></a><span id='Bool.v' class='invisible'><code>Bool</code></span></span><div class='docblock'><p>The fundamental type corresponding to <code>bool</code></p>
|
||
</div><span id="variant.I32" class="variant small-section-header"><a href="#variant.I32" class="anchor field"></a><span id='I32.v' class='invisible'><code>I32</code></span></span><div class='docblock'><p>The fundamental type corresponding to <code>i32</code></p>
|
||
</div><span id="variant.U32" class="variant small-section-header"><a href="#variant.U32" class="anchor field"></a><span id='U32.v' class='invisible'><code>U32</code></span></span><div class='docblock'><p>The fundamental type corresponding to <code>u32</code></p>
|
||
</div><span id="variant.ILong" class="variant small-section-header"><a href="#variant.ILong" class="anchor field"></a><span id='ILong.v' class='invisible'><code>ILong</code></span></span><div class='docblock'><p>The fundamental type corresponding to C <code>long</code></p>
|
||
</div><span id="variant.ULong" class="variant small-section-header"><a href="#variant.ULong" class="anchor field"></a><span id='ULong.v' class='invisible'><code>ULong</code></span></span><div class='docblock'><p>The fundamental type corresponding to C <code>unsigned long</code></p>
|
||
</div><span id="variant.I64" class="variant small-section-header"><a href="#variant.I64" class="anchor field"></a><span id='I64.v' class='invisible'><code>I64</code></span></span><div class='docblock'><p>The fundamental type corresponding to <code>i64</code></p>
|
||
</div><span id="variant.U64" class="variant small-section-header"><a href="#variant.U64" class="anchor field"></a><span id='U64.v' class='invisible'><code>U64</code></span></span><div class='docblock'><p>The fundamental type corresponding to <code>u64</code></p>
|
||
</div><span id="variant.F32" class="variant small-section-header"><a href="#variant.F32" class="anchor field"></a><span id='F32.v' class='invisible'><code>F32</code></span></span><div class='docblock'><p>The fundamental type corresponding to <code>f32</code></p>
|
||
</div><span id="variant.F64" class="variant small-section-header"><a href="#variant.F64" class="anchor field"></a><span id='F64.v' class='invisible'><code>F64</code></span></span><div class='docblock'><p>The fundamental type corresponding to <code>f64</code></p>
|
||
</div><span id="variant.String" class="variant small-section-header"><a href="#variant.String" class="anchor field"></a><span id='String.v' class='invisible'><code>String</code></span></span><div class='docblock'><p>The fundamental type corresponding to <code>String</code></p>
|
||
</div><span id="variant.Pointer" class="variant small-section-header"><a href="#variant.Pointer" class="anchor field"></a><span id='Pointer.v' class='invisible'><code>Pointer</code></span></span><div class='docblock'><p>The fundamental type corresponding to a pointer</p>
|
||
</div><span id="variant.Variant" class="variant small-section-header"><a href="#variant.Variant" class="anchor field"></a><span id='Variant.v' class='invisible'><code>Variant</code></span></span><div class='docblock'><p>The fundamental type of GVariant</p>
|
||
</div><span id="variant.BaseInterface" class="variant small-section-header"><a href="#variant.BaseInterface" class="anchor field"></a><span id='BaseInterface.v' class='invisible'><code>BaseInterface</code></span></span><div class='docblock'><p>The fundamental type from which all interfaces are derived</p>
|
||
</div><span id="variant.BaseEnum" class="variant small-section-header"><a href="#variant.BaseEnum" class="anchor field"></a><span id='BaseEnum.v' class='invisible'><code>BaseEnum</code></span></span><div class='docblock'><p>The fundamental type from which all enumeration types are derived</p>
|
||
</div><span id="variant.BaseFlags" class="variant small-section-header"><a href="#variant.BaseFlags" class="anchor field"></a><span id='BaseFlags.v' class='invisible'><code>BaseFlags</code></span></span><div class='docblock'><p>The fundamental type from which all flags types are derived</p>
|
||
</div><span id="variant.BaseBoxed" class="variant small-section-header"><a href="#variant.BaseBoxed" class="anchor field"></a><span id='BaseBoxed.v' class='invisible'><code>BaseBoxed</code></span></span><div class='docblock'><p>The fundamental type from which all boxed types are derived</p>
|
||
</div><span id="variant.BaseParamSpec" class="variant small-section-header"><a href="#variant.BaseParamSpec" class="anchor field"></a><span id='BaseParamSpec.v' class='invisible'><code>BaseParamSpec</code></span></span><div class='docblock'><p>The fundamental type from which all <code>GParamSpec</code> types are derived</p>
|
||
</div><span id="variant.BaseObject" class="variant small-section-header"><a href="#variant.BaseObject" class="anchor field"></a><span id='BaseObject.v' class='invisible'><code>BaseObject</code></span></span><div class='docblock'><p>The fundamental type from which all objects are derived</p>
|
||
</div><span id="variant.Other" class="variant small-section-header"><a href="#variant.Other" class="anchor field"></a><span id='Other.v' class='invisible'><code>Other(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>)</code></span></span><div class='docblock'><p>A non-fundamental type identified by value of type <code>usize</code></p>
|
||
</div>
|
||
<h2 id='methods' class='small-section-header'>
|
||
Methods<a href='#methods' class='anchor'></a>
|
||
</h2>
|
||
<h3 id='impl' class='impl'><span class='in-band'><code>impl <a class="enum" href="../../glib/types/enum.Type.html" title="enum glib::types::Type">Type</a></code><a href='#impl' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/glib/types.rs.html#64-70' title='goto source code'>[src]</a></span></h3>
|
||
<div class='impl-items'><h4 id='method.name' class="method"><span id='name.v' class='invisible'><code>pub fn <a href='#method.name' class='fnname'>name</a>(&self) -> <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/string/struct.String.html" title="struct alloc::string::String">String</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/glib/types.rs.html#65-69' title='goto source code'>[src]</a></span></h4>
|
||
</div>
|
||
<h2 id='implementations' class='small-section-header'>
|
||
Trait Implementations<a href='#implementations' class='anchor'></a>
|
||
</h2>
|
||
<h3 id='impl-Clone' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> for <a class="enum" href="../../glib/types/enum.Type.html" title="enum glib::types::Type">Type</a></code><a href='#impl-Clone' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/glib/types.rs.html#14' title='goto source code'>[src]</a></span></h3>
|
||
<div class='impl-items'><h4 id='method.clone' class="method"><span id='clone.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#tymethod.clone' class='fnname'>clone</a>(&self) -> <a class="enum" href="../../glib/types/enum.Type.html" title="enum glib::types::Type">Type</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/glib/types.rs.html#14' title='goto source code'>[src]</a></span></h4>
|
||
<div class='docblock'><p>Returns a copy of the value. <a href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#tymethod.clone">Read more</a></p>
|
||
</div><h4 id='method.clone_from' class="method"><span id='clone_from.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone_from' class='fnname'>clone_from</a>(&mut self, source: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self)</code></span><span class='out-of-band'><div class='ghost'></div><div class='since' title='Stable since Rust version 1.0.0'>1.0.0</div><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/clone.rs.html#112-114' title='goto source code'>[src]</a></span></h4>
|
||
<div class='docblock'><p>Performs copy-assignment from <code>source</code>. <a href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone_from">Read more</a></p>
|
||
</div></div><h3 id='impl-Copy' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a> for <a class="enum" href="../../glib/types/enum.Type.html" title="enum glib::types::Type">Type</a></code><a href='#impl-Copy' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/glib/types.rs.html#14' title='goto source code'>[src]</a></span></h3>
|
||
<div class='impl-items'></div><h3 id='impl-PartialEq' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a> for <a class="enum" href="../../glib/types/enum.Type.html" title="enum glib::types::Type">Type</a></code><a href='#impl-PartialEq' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/glib/types.rs.html#14' title='goto source code'>[src]</a></span></h3>
|
||
<div class='impl-items'><h4 id='method.eq' class="method"><span id='eq.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#tymethod.eq' class='fnname'>eq</a>(&self, __arg_0: &<a class="enum" href="../../glib/types/enum.Type.html" title="enum glib::types::Type">Type</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/glib/types.rs.html#14' title='goto source code'>[src]</a></span></h4>
|
||
<div class='docblock'><p>This method tests for <code>self</code> and <code>other</code> values to be equal, and is used by <code>==</code>. <a href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#tymethod.eq">Read more</a></p>
|
||
</div><h4 id='method.ne' class="method"><span id='ne.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#method.ne' class='fnname'>ne</a>(&self, __arg_0: &<a class="enum" href="../../glib/types/enum.Type.html" title="enum glib::types::Type">Type</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/glib/types.rs.html#14' title='goto source code'>[src]</a></span></h4>
|
||
<div class='docblock'><p>This method tests for <code>!=</code>.</p>
|
||
</div></div><h3 id='impl-Eq' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a> for <a class="enum" href="../../glib/types/enum.Type.html" title="enum glib::types::Type">Type</a></code><a href='#impl-Eq' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/glib/types.rs.html#14' title='goto source code'>[src]</a></span></h3>
|
||
<div class='impl-items'></div><h3 id='impl-Debug' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html" title="trait core::fmt::Debug">Debug</a> for <a class="enum" href="../../glib/types/enum.Type.html" title="enum glib::types::Type">Type</a></code><a href='#impl-Debug' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/glib/types.rs.html#72-76' title='goto source code'>[src]</a></span></h3>
|
||
<div class='impl-items'><h4 id='method.fmt' class="method"><span id='fmt.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html#tymethod.fmt' class='fnname'>fmt</a>(&self, f: &mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>) -> <a class="type" href="https://doc.rust-lang.org/nightly/core/fmt/type.Result.html" title="type core::fmt::Result">Result</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/glib/types.rs.html#73-75' title='goto source code'>[src]</a></span></h4>
|
||
<div class='docblock'><p>Formats the value using the given formatter. <a href="https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html#tymethod.fmt">Read more</a></p>
|
||
</div></div><h3 id='impl-Display' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Display.html" title="trait core::fmt::Display">Display</a> for <a class="enum" href="../../glib/types/enum.Type.html" title="enum glib::types::Type">Type</a></code><a href='#impl-Display' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/glib/types.rs.html#78-82' title='goto source code'>[src]</a></span></h3>
|
||
<div class='impl-items'><h4 id='method.fmt-1' class="method"><span id='fmt.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.Display.html#tymethod.fmt' class='fnname'>fmt</a>(&self, f: &mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>) -> <a class="type" href="https://doc.rust-lang.org/nightly/core/fmt/type.Result.html" title="type core::fmt::Result">Result</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/glib/types.rs.html#79-81' title='goto source code'>[src]</a></span></h4>
|
||
<div class='docblock'><p>Formats the value using the given formatter. <a href="https://doc.rust-lang.org/nightly/core/fmt/trait.Display.html#tymethod.fmt">Read more</a></p>
|
||
</div></div><h3 id='impl-FromGlib%3CGType%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="../../glib/translate/trait.FromGlib.html" title="trait glib::translate::FromGlib">FromGlib</a><<a class="type" href="../../glib_sys/type.GType.html" title="type glib_sys::GType">GType</a>> for <a class="enum" href="../../glib/types/enum.Type.html" title="enum glib::types::Type">Type</a></code><a href='#impl-FromGlib%3CGType%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/glib/types.rs.html#131-161' title='goto source code'>[src]</a></span></h3>
|
||
<div class='impl-items'><h4 id='method.from_glib' class="method"><span id='from_glib.v' class='invisible'><code>fn <a href='../../glib/translate/trait.FromGlib.html#tymethod.from_glib' class='fnname'>from_glib</a>(val: <a class="type" href="../../glib_sys/type.GType.html" title="type glib_sys::GType">GType</a>) -> <a class="enum" href="../../glib/types/enum.Type.html" title="enum glib::types::Type">Type</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/glib/types.rs.html#133-160' title='goto source code'>[src]</a></span></h4>
|
||
</div><h3 id='impl-ToGlib' class='impl'><span class='in-band'><code>impl <a class="trait" href="../../glib/translate/trait.ToGlib.html" title="trait glib::translate::ToGlib">ToGlib</a> for <a class="enum" href="../../glib/types/enum.Type.html" title="enum glib::types::Type">Type</a></code><a href='#impl-ToGlib' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/glib/types.rs.html#163-194' title='goto source code'>[src]</a></span></h3>
|
||
<div class='impl-items'><h4 id='associatedtype.GlibType' class="type"><span id='GlibType.t' class='invisible'><code>type <a href='../../glib/translate/trait.ToGlib.html#associatedtype.GlibType' class="type">GlibType</a> = <a class="type" href="../../glib_sys/type.GType.html" title="type glib_sys::GType">GType</a></code></span></h4>
|
||
<h4 id='method.to_glib' class="method"><span id='to_glib.v' class='invisible'><code>fn <a href='../../glib/translate/trait.ToGlib.html#tymethod.to_glib' class='fnname'>to_glib</a>(&self) -> <a class="type" href="../../glib_sys/type.GType.html" title="type glib_sys::GType">GType</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/glib/types.rs.html#166-193' title='goto source code'>[src]</a></span></h4>
|
||
</div></section>
|
||
<section id='search' class="content hidden"></section>
|
||
|
||
<section class="footer"></section>
|
||
|
||
<aside id="help" class="hidden">
|
||
<div>
|
||
<h1 class="hidden">Help</h1>
|
||
|
||
<div class="shortcuts">
|
||
<h2>Keyboard Shortcuts</h2>
|
||
|
||
<dl>
|
||
<dt>?</dt>
|
||
<dd>Show this help dialog</dd>
|
||
<dt>S</dt>
|
||
<dd>Focus the search field</dd>
|
||
<dt>↑</dt>
|
||
<dd>Move up in search results</dd>
|
||
<dt>↓</dt>
|
||
<dd>Move down in search results</dd>
|
||
<dt>↹</dt>
|
||
<dd>Switch tab</dd>
|
||
<dt>⏎</dt>
|
||
<dd>Go to active search result</dd>
|
||
<dt style="width:31px;">+ / -</dt>
|
||
<dd>Collapse/expand all sections</dd>
|
||
</dl>
|
||
</div>
|
||
|
||
<div class="infos">
|
||
<h2>Search Tricks</h2>
|
||
|
||
<p>
|
||
Prefix searches with a type followed by a colon (e.g.
|
||
<code>fn:</code>) to restrict the search to a given type.
|
||
</p>
|
||
|
||
<p>
|
||
Accepted types are: <code>fn</code>, <code>mod</code>,
|
||
<code>struct</code>, <code>enum</code>,
|
||
<code>trait</code>, <code>type</code>, <code>macro</code>,
|
||
and <code>const</code>.
|
||
</p>
|
||
|
||
<p>
|
||
Search functions by type signature (e.g.
|
||
<code>vec -> usize</code> or <code>* -> vec</code>)
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</aside>
|
||
|
||
|
||
|
||
<script>
|
||
window.rootPath = "../../";
|
||
window.currentCrate = "glib";
|
||
</script>
|
||
<script src="../../main.js"></script>
|
||
<script defer src="../../search-index.js"></script>
|
||
</body>
|
||
</html> |