Skip to content

std:*: Standard-library modules

Mirrors Rust's standard library. Surface shaped so Rust-fluent readers recognise methods and semantics immediately.

Also contains modules with no std:: equivalent but broadly needed — std:workers (worker-pool substrate) is the principal example.

Reference

  • std:collections — Concurrent, shareable collection types
  • std:fs — Filesystem reads, writes, metadata
  • std:io — Standard input/output handles
  • std:net — TCP listeners and sockets
  • std:thread — Thread-local primitives and sleep
  • std:workers — Worker pool, cross-worker state, shutdown signal

See also