6 releases (3 breaking)

0.6.0 Mar 21, 2020
0.6.0-alpha.1 Mar 17, 2020
0.5.1 Feb 17, 2020
0.5.0 Nov 2, 2019
0.3.0 Sep 23, 2019

#1307 in Rust patterns

Download history 264/week @ 2023-12-11 571/week @ 2023-12-18 242/week @ 2023-12-25 155/week @ 2024-01-01 276/week @ 2024-01-08 381/week @ 2024-01-15 126/week @ 2024-01-22 143/week @ 2024-01-29 218/week @ 2024-02-05 279/week @ 2024-02-12 219/week @ 2024-02-19 312/week @ 2024-02-26 274/week @ 2024-03-04 269/week @ 2024-03-11 468/week @ 2024-03-18 653/week @ 2024-03-25

1,730 downloads per month
Used in 217 crates (16 directly)

MIT/Apache

56KB
762 lines

Utilities for interoperability with C++

See the project's README for more information.

The API is not stable yet. Breaking changes may occur in new minor versions.

Pointers

cpp_core provides three kinds of pointers:

  • CppBox: owned, non-null (corresponds to C++ objects passed by value)
  • Ptr: possibly owned, possibly null (correspond to C++ pointers)
  • Ref: not owned, non-null (correspond to C++ references)

Accessing objects through these pointers is inherently unsafe, as the compiler cannot make any guarantee about the validity of pointers to objects managed by C++ libraries.

Unlike Rust references, these pointers can be freely copied, producing multiple mutable pointers to the same object, which is usually necessary to do when working with C++ libraries.

Pointer types implement operator traits and delegate them to the corresponding C++ operators. This means that you can use ptr1 + ptr2 to access the object's operator+.

Pointer types implement Deref, allowing to call the object's methods directly. In addition, methods of the object's first base class are also directly available thanks to nested Deref implementations.

If the object provides an iterator interface through begin() and end() functions, pointer types will implement IntoIterator, so you can iterate on them directly.

Casts

The following traits provide access to casting between C++ class types:

  • StaticUpcast safely converts from a derived class to a base class (backed by C++'s static_cast).
  • DynamicCast performs a checked conversion from a base class to a derived class (backed by C++'s dynamic_cast).
  • StaticDowncast converts from a base class to a derived class without a runtime check (also backed by C++'s static_cast).

Instead of using these traits directly, it's more convenient to use static_upcast, static_downcast, dynamic_cast helpers on pointer types.

The CastFrom and CastInto traits represent some of the implicit coercions available in C++. For example, if a method accepts impl CastInto<Ptr<SomeClass>>, you can pass a Ptr<SomeClass>, &CppBox<SomeClass>, or even Ptr<DerivedClass> (where DerivedClass inherits SomeClass). You can also pass a null pointer object (NullPtr) if you don't have a value (Ptr::null() is also an option but it can cause type inference issues).

Dependencies

~42KB