Struct magnus::r_string::FString

source ·
#[repr(transparent)]
pub struct FString(_);
Expand description

FString contains an RString known to be interned.

Interned strings won’t be garbage collected or modified, so should be safe to store on the heap or hold a &str refrence to. FString provides a way to encode this property into the type system, and provides safe methods to access the string as a &str or slice.

Implementations§

Returns the interned string as a RString.

Returns the interned string as a slice of bytes.

Examples
use magnus::{eval, RString};

let s: RString = eval!(r#"
# frozen_string_literal: true

"example"
"#).unwrap();
let fstring = s.as_interned_str().unwrap();
assert_eq!(fstring.as_slice(), &[101, 120, 97, 109, 112, 108, 101]);

Returns the interned string as a &str or None string contains invliad UTF-8.

Examples
use magnus::{eval, RString};

let s: RString = eval!(r#"# frozen_string_literal: true
"example"
"#).unwrap();
let fstring = s.as_interned_str().unwrap();
assert_eq!(fstring.test_as_str().unwrap(), "example");

Returns the interned string as a &str. Errors if the string contains invliad UTF-8.

Examples
use magnus::{eval, RString};

let s: RString = eval!(r#"# frozen_string_literal: true
"example"
"#).unwrap();
let fstring = s.as_interned_str().unwrap();
assert_eq!(fstring.as_str().unwrap(), "example");

Returns interned string as a Rust string, ignoring the Ruby encoding and dropping any non-UTF-8 characters. If the string is valid UTF-8 this will return a &str reference.

Examples
use magnus::{eval, RString};

let s: RString = eval!(r#"
# frozen_string_literal: true

"example"
"#).unwrap();
let fstring = s.as_interned_str().unwrap();
assert_eq!(fstring.to_string_lossy(), "example");

Methods from Deref<Target = Value>§

Convert self to a Rust string.

Safety

This may return a direct view of memory owned and managed by Ruby. Ruby may modify or free the memory backing the returned str, the caller must ensure this does not happen.

This can be used safely by immediately calling into_owned on the return value.

Examples
use magnus::{eval, QTRUE};

let value = QTRUE;
// safe as we neve give Ruby a chance to free the string.
let s = unsafe { value.to_s() }.unwrap().into_owned();
assert_eq!(s, "true");

Return the name of self’s class.

Safety

Ruby may modify or free the memory backing the returned str, the caller must ensure this does not happen.

This can be used safely by immediately calling into_owned on the return value.

Examples
use magnus::{eval, RHash};

let value = RHash::new();
// safe as we never give Ruby a chance to free the string.
let s = unsafe { value.classname() }.into_owned();
assert_eq!(s, "Hash");

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
The resulting type after dereferencing.
Dereferences the value.
Formats the value using the given formatter. Read more
Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.