From b5aa889f7fced8ba2cc1698ae9696d7bd0ca8ab5 Mon Sep 17 00:00:00 2001 From: garhve Date: Tue, 20 Dec 2022 11:07:35 +0800 Subject: remove compiled binary --- .../guessing_game/target/doc/cfg_if/all.html | 1 - .../guessing_game/target/doc/cfg_if/index.html | 19 ------------------- .../target/doc/cfg_if/macro.cfg_if!.html | 11 ----------- .../guessing_game/target/doc/cfg_if/macro.cfg_if.html | 19 ------------------- .../guessing_game/target/doc/cfg_if/sidebar-items.js | 1 - 5 files changed, 51 deletions(-) delete mode 100644 rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if/all.html delete mode 100644 rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if/index.html delete mode 100644 rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if/macro.cfg_if!.html delete mode 100644 rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if/macro.cfg_if.html delete mode 100644 rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if/sidebar-items.js (limited to 'rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if') diff --git a/rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if/all.html b/rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if/all.html deleted file mode 100644 index 222d605..0000000 --- a/rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if/all.html +++ /dev/null @@ -1 +0,0 @@ -List of all items in this crate

List of all items

Macros

\ No newline at end of file diff --git a/rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if/index.html b/rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if/index.html deleted file mode 100644 index 7c0909d..0000000 --- a/rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if/index.html +++ /dev/null @@ -1,19 +0,0 @@ -cfg_if - Rust
Expand description

A macro for defining #[cfg] if-else statements.

-

The macro provided by this crate, cfg_if, is similar to the if/elif C -preprocessor macro by allowing definition of a cascade of #[cfg] cases, -emitting the implementation which matches first.

-

This allows you to conveniently provide a long list #[cfg]’d blocks of code -without having to rewrite each clause multiple times.

-

Example

-
cfg_if::cfg_if! {
-    if #[cfg(unix)] {
-        fn foo() { /* unix specific functionality */ }
-    } else if #[cfg(target_pointer_width = "32")] {
-        fn foo() { /* non-unix, 32-bit functionality */ }
-    } else {
-        fn foo() { /* fallback implementation */ }
-    }
-}
-
-

Macros

The main macro provided by this crate. See crate documentation for more -information.
\ No newline at end of file diff --git a/rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if/macro.cfg_if!.html b/rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if/macro.cfg_if!.html deleted file mode 100644 index 6ce4b59..0000000 --- a/rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if/macro.cfg_if!.html +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Redirection - - -

Redirecting to macro.cfg_if.html...

- - - \ No newline at end of file diff --git a/rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if/macro.cfg_if.html b/rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if/macro.cfg_if.html deleted file mode 100644 index 338927d..0000000 --- a/rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if/macro.cfg_if.html +++ /dev/null @@ -1,19 +0,0 @@ -cfg_if in cfg_if - Rust
macro_rules! cfg_if {
-    ($(
-        if #[cfg($meta:meta)] { $($tokens:tt)* }
-    ) else * else {
-        $($tokens2:tt)*
-    }) => { ... };
-    (
-        if #[cfg($i_met:meta)] { $($i_tokens:tt)* }
-        $(
-            else if #[cfg($e_met:meta)] { $($e_tokens:tt)* }
-        )*
-    ) => { ... };
-    (@__items ($($not:meta,)*) ; ) => { ... };
-    (@__items ($($not:meta,)*) ; ( ($($m:meta),*) ($($tokens:tt)*) ), $($rest:tt)*) => { ... };
-    (@__identity $($tokens:tt)*) => { ... };
-}
-
Expand description

The main macro provided by this crate. See crate documentation for more -information.

-
\ No newline at end of file diff --git a/rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if/sidebar-items.js b/rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if/sidebar-items.js deleted file mode 100644 index 04f779e..0000000 --- a/rust/theBook/chapter-2-guessing-game/guessing_game/target/doc/cfg_if/sidebar-items.js +++ /dev/null @@ -1 +0,0 @@ -window.SIDEBAR_ITEMS = {"macro":[["cfg_if","The main macro provided by this crate. See crate documentation for more information."]]}; \ No newline at end of file -- cgit v1.2.3-70-g09d2