External Blocks

  • Part of the Rust language
  • Foundational to Rust's FFI story
  • Provide declarations of items that are not defined in the current crate
    • functions
    • statics

Examples

extern "C" {
    // functions and statics go here
}

References