Struct magnus::Symbol

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

A type wrapping either a StaticSymbol or a Value pointer to a RSymbol struct.

All Value methods should be available on this type through Deref, but some may be missed by this documentation.

Implementations§

Return Some(Symbol) if val is a Symbol, None otherwise.

Examples
use magnus::{eval, Symbol};

assert!(Symbol::from_value(eval(":foo").unwrap()).is_some());
assert!(Symbol::from_value(eval(r#""bar".to_sym"#).unwrap()).is_some());
assert!(Symbol::from_value(eval(r#""baz""#).unwrap()).is_none());

Create a new Symbol from name.

Examples
use magnus::{eval, Symbol};

let sym = Symbol::new("example");
let result: bool = eval!(":example == sym", sym).unwrap();
assert!(result);

Returns whether self is static or not.

Static symbols won’t be garbage collected, so should be safe to store on the heap. See StaticSymbol.

Examples
use magnus::{eval, Symbol};

assert!(eval::<Symbol>(":foo").unwrap().is_static());
assert!(!Symbol::new("bar").is_static());
assert!(!eval::<Symbol>(r#""baz".to_sym"#).unwrap().is_static());

Return the symbol as a string. If the symbol is static this will be a &str, otherwise an owned String.

May error if the name is not valid utf-8.

Examples
use magnus::Symbol;

let sym = Symbol::new("example");
assert_eq!(sym.name().unwrap(), "example");

If self is static, returns self as a StaticSymbol, otherwise returns None.

Examples
use magnus::{eval, Symbol};

assert!(eval::<Symbol>(":foo").unwrap().as_static().is_some());
assert!(Symbol::new("bar").as_static().is_none());
assert!(eval::<Symbol>(r#""baz".to_sym"#).unwrap().as_static().is_none());

If self is already static simply returns self as a StaticSymbol. If self is not static it will be made so and returned as a StaticSymbol.

Be aware that once static a symbol will never be garbage collected.

Examples
use magnus::{eval, Symbol};

let sym = Symbol::new("example");
let static_sym = sym.to_static();

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
Get the encoding of self. Read more
Set self’s encoding. Read more
Set self’s encoding, along with performing additional fix-up self’s contents. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Convert val into Self.

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.