Crates.io | crux_time |
lib.rs | crux_time |
version | 0.6.0 |
source | src |
created_at | 2022-12-15 16:51:32.406127 |
updated_at | 2024-10-23 09:29:39.912452 |
description | Time capability for use with crux_core |
homepage | |
repository | https://github.com/redbadger/crux/ |
max_upload_size | |
id | 738117 |
size | 29,295 |
This crate contains the Time
capability, which can be used to ask the current time from the Shell.
For an example of how to use the capability, see the integration test.
Crux capabilities teach Crux how to interact with the shell when performing side effects. They do the following:
Request
struct to instruct the Shell how to perform the side effect on behalf of the CoreResponse
struct to hold the data returned by the Shell after the side effect has completedCommand
(describing the effect and its continuation) that Crux can "execute"Note that because Swift has no namespacing, there is currently a requirement to ensure that
Request
andResponse
are unambiguously named (e.g.HttpRequest
andHttpResponse
).