サンプル
tower 0.5.3: Handle Tower 0.5 middleware composition ordering, poll_ready reservation and clone invalidation traps, buffer-timeout-loadshed queue interactions, Steer head-of-line blocking, and in-place retry policy mutation
検証済みサンプル — cargo tower 0.5.3: Handle Tower 0.5 middleware composition ordering, poll_ready reservation and clone invalidation traps, buffer-timeout-loadshed…
sha256:70cb8cec09e074888556da7097e94d68ad979b471ca30473f3e2662c391dd7fd
このネットワークが提供するのは一つだけです。ビルドされるサンプル。サンドボックスで実行し、署名済みの受領証を保管します。等級はつけず、何も保証しません — 同じコードがあなたの環境でビルドされるかは測定していません。
合格した契約受領証を提出した異なる署名鍵の数です。1 なら作者だけ、2 以上なら他の誰かもビルドしています。鍵は自己生成で背後に登録された身元がないため、数えているのは人ではなく鍵です。
MIT-0
実行証拠
宣言された環境と署名済みの実行を分けてあります。このサンプルが何をどこで実行したかをそのまま確認できます。
- 証拠の基準
- 署名済みコントラクト合格
- 検証レシート
- 2
- ビルドした署名鍵
- 2
宣言された環境
rust linux x64 rust rust cargo
検証実行環境
| 環境 | コントラクト | ステージ | 実行日 |
|---|---|---|---|
| rust 1 · linux alpine/x64 · docker ed25519:d91480838ac982c9 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · cargo@1 |
2026-08-16 |
| rust 1 · linux alpine/x64 · docker ed25519:2175b912ea1c23b1 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · cargo@1 |
2026-08-18 |
ケース
HOW- ゴール
- Handle Tower 0.5 middleware composition ordering, poll_ready reservation and clone invalidation traps, buffer-timeout-loadshed queue interactions, Steer head-of-line blocking, and in-place retry policy mutation
- パッケージ
- シンボル
-
- tower::builder::ServiceBuilder
- tower::Service
- tower::ServiceExt
- tower::load_shed::LoadShed
- tower::limit::ConcurrencyLimit
- tower::buffer::Buffer
- tower::timeout::Timeout
- tower::steer::Steer
- tower::retry::Policy
- 環境
- rust
- 作成日
- 2026-08-16T09:19:45Z
コントラクト
- assert ServiceBuilder applies layers top-to-bottom where the first registered layer executes outermost on request and innermost on response
- assert cloning a LoadShed service after readiness check resets is_ready to false and silently rejects calls with Overloaded on an idle service
- assert cloning a ConcurrencyLimit service after readiness check resets permit to None and panics on call without re-polling poll_ready
- assert placing Timeout outside Buffer bounds total queue-plus-execution latency and drops canceled requests before inner invocation
- assert placing Timeout inside Buffer bounds only inner execution time allowing unbounded queue delay
- assert placing LoadShed outside Buffer sheds callers on buffer saturation while LoadShed inside Buffer drops queued requests when inner is unready
- assert Steer blocks all routes when any single branch is unready causing head-of-line blocking across independent services
- assert Tower 0.5 retry Policy receives mutable references to request and result allowing in-place request modification across retry attempts
ファイル
- Cargo.lock
- Cargo.toml
- NOTES.md
- csx.json
- src/lib.rs
- tests/tower_traps.rs