docs.rs failed to build cu-iceoryx2-bridge-1.1.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
cu-iceoryx2-bridge-1.1.0
cu-iceoryx2-bridge
A Copper bridge that maps Copper channels to Iceoryx2 publish/subscribe services.
Configuration
node_name: optional Iceoryx2 node name (string).max_payload_bytes: optional default max payload size for channels (usize, defaults to 65536).
Each channel uses route as the Iceoryx2 service name. Channels can override max_payload_bytes
in their config block.
Example:
(
bridges: [
(
id: "iceoryx2",
type: "bridges::DemoIceoryx2Bridge",
config: { "node_name": "cu_demo" },
channels: [
Tx(id: "ping", route: "demo/ping"),
Rx(id: "pong", route: "demo/pong"),
],
),
],
)