Rust std::string::String
<---> Swift String
Rust's std::string::String
can be passed to Swift as an owned String
, a referenced &String
or a mutably referenced &mut String
.
// Swift
func make_rust_string() -> RustString {
RustString("Good Day")
}
// Swift can return anything that implements the `IntoRustString` protocol.
// `swift-brdige` automatically implements this for Swift's `String` type.
func make_swift_string() -> String {
"Hello World"
}
RustString
It is technically possible for us to automatically convert owned Rust std::string::String
s into Swift String
s,
but we do not do this because it would require copying the Rust std::string::String
bytes to a new Swift
allocation.
This is because there is no way to construct a Swift String
without copying.
swift-bridge
seeks to avoid unnecessary allocations, so instead of performing an implicit allocation we pass a RustString
type from Rust to Swift.
The RustString
's .toString()
method can then be called on the Swift side to get a Swift String
.