検索

phrase: max: clip:
target: order:
Results of 1 - 8 of about 8 for private (0.029 sec.)
プライベートとパブリック - Rust By Example 日本語版 13628
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... ジュール mod my_mod { // Items in modules default to private visibility. // モジュール内の要素はデフォルトでプラ ... イベート fn private_function() { println!("called `my_mod::private_fun ... ccess other items in the same module, // even when private. // モジュール内からならば、プライベートな属性にア ... !("called `my_mod::indirect_access()`, that\n> "); private_function(); } // Modules can also be nested pub mo ...
https://man.plustar.jp/rust/example/mod/visibility.html - [similar]
ファイルの階層構造 - Rust By Example 日本語版 9127
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... tion() { println!("called `my::function()`"); } fn private_function() { println!("called `my::private_functio ... rint!("called `my::indirect_access()`, that\n> "); private_function(); } In my/nested.rs : pub fn function() ... y::nested::function()`"); } #[allow(dead_code)] fn private_function() { println!("called `my::nested::private ... called `my::indirect_access()`, that > called `my::private_function()` called `my::nested::function()` 関連キ ...
https://man.plustar.jp/rust/example/mod/split.html - [similar]
構造体の場合 - Rust By Example 日本語版 9073
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... <T> { pub contents: T, } // A public struct with a private field of generic type `T` // プライベートなフィール ... s: {}", open_box.contents); // Public structs with private fields cannot be constructed using field names. // ... Error! `ClosedBox` has private fields // プライベートなフィールドを持つ構造体は、 ... ンコメントしてみましょう。 // However, structs with private fields can be created using // public constructors ...
https://man.plustar.jp/rust/example/mod/struct_visibility.html - [similar]
Using a Library - Rust By Example 日本語版 8495
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... er fn main() { rary::public_function(); // Error! `private_function` is private //rary::private_function(); r ... rary's `indirect_access()`, that > called rary's `private_function()` 関連キーワード: 関数 , Using , Result ...
https://man.plustar.jp/rust/example/crates/using_lib.html - [similar]
Creating a Library - Rust By Example 日本語版 8260
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... rintln!("called rary's `public_function()`"); } fn private_function() { println!("called rary's `private_func ... t!("called rary's `indirect_access()`, that\n> "); private_function(); } $ rustc --crate-type=lib rary.rs $ l ...
https://man.plustar.jp/rust/example/crates/lib.html - [similar]
クレート - Rust By Example 日本語版 8205
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... rintln!("called rary's `public_function()`"); } fn private_function() { println!("called rary's `private_func ... t!("called rary's `indirect_access()`, that\n> "); private_function(); } crate_type アトリビュートが使用されて ...
https://man.plustar.jp/rust/example/attribute/crate.html - [similar]
Integration testing - Rust By Example 日本語版 7735
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... in isolation at a time: they're small and can test private code. Integration tests are external to your crate ...
https://man.plustar.jp/rust/example/testing/integration_testing.html - [similar]
Unit testing - Rust By Example 日本語版 7681
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... ould fire and test will fail. // Please note, that private functions can be tested too! assert_eq!(bad_add(1, ...
https://man.plustar.jp/rust/example/testing/unit_testing.html - [similar]
PREV 1 NEXT