Trailing kwargs slot. `None` when no kwargs were passed (host sends handle 0); `Some(dict)` otherwise.
| 196 | |
| 197 | /// Trailing kwargs slot. `None` when no kwargs were passed (host sends handle 0); `Some(dict)` otherwise. |
| 198 | pub struct Kwargs(Option<Handle>); |
| 199 | |
| 200 | impl Kwargs { |
| 201 | /// Decode `name` from kwargs as primitive `T`. Returns `Ok(None)` if absent or kwargs slot empty; `Ok(Some(_))` on hit; `Err` on decode failure. Use `get_handle` for non-primitive values (callables, tuples, lists). |