#[repr(C)]pub struct AnyObject { /* private fields */ }
Expand description
Representation of any Ruby object while its type is unknown
As Ruby is a dynamically typed language, at some points Rutie does not know the exact Ruby type of the object, for example:
-
Retrieving an object from array;
-
Retrieving an object from hash;
-
Receiving arguments to a method;
-
Initializing a new instance of a non-built-in class.
In these cases you should cast AnyObject
to the required type.
§Examples
§Retrieving an object from Array
use rutie::{Array, Fixnum, Object, VM};
let array = Array::new().push(Fixnum::new(1));
let value = array.at(0).try_convert_to::<Fixnum>(); // `Array::at()` returns `AnyObject`
assert_eq!(value, Ok(Fixnum::new(1)));
§Retrieving an object from Hash
use rutie::{Fixnum, Hash, Object, Symbol, VM};
let mut hash = Hash::new();
hash.store(Symbol::new("key"), Fixnum::new(1));
// `Hash::at()` returns `AnyObject`
let value = hash.at(&Symbol::new("key")).try_convert_to::<Fixnum>();
assert_eq!(value, Ok(Fixnum::new(1)));
You can find more examples in Class
, Object
and VerifiedObject
documentation.
Methods from Deref<Target = Value>§
pub fn is_true(&self) -> bool
pub fn is_false(&self) -> bool
pub fn is_nil(&self) -> bool
pub fn is_node(&self) -> bool
pub fn is_undef(&self) -> bool
pub fn is_symbol(&self) -> bool
pub fn is_fixnum(&self) -> bool
pub fn is_flonum(&self) -> bool
pub fn is_frozen(&self) -> bool
pub fn ty(&self) -> ValueType
Trait Implementations§
Source§impl FromIterator<AnyObject> for Array
Converts an iterator into Array
.
impl FromIterator<AnyObject> for Array
Converts an iterator into Array
.
§Examples
use rutie::{Array, Fixnum, Object, VM};
let array: Array = (1..6)
.map(|num| num * 2)
.map(|num| Fixnum::new(num).to_any_object())
.collect();
assert_eq!(array.length(), 5);
for i in 0..5 {
let expected_number = (i + 1) * 2;
assert_eq!(array.at(i).try_convert_to::<Fixnum>().unwrap().to_i64(), expected_number);
}
Source§impl Into<AnyObject> for AnyException
impl Into<AnyObject> for AnyException
Source§impl Into<AnyObject> for Enumerator
impl Into<AnyObject> for Enumerator
Source§impl Object for AnyObject
impl Object for AnyObject
Source§fn singleton_class(&self) -> Class
fn singleton_class(&self) -> Class
Returns a singleton class of current object. Read more
Source§fn get_data<'a, T>(&'a self, wrapper: &'a dyn DataTypeWrapper<T>) -> &T
fn get_data<'a, T>(&'a self, wrapper: &'a dyn DataTypeWrapper<T>) -> &T
Gets an immutable reference to the Rust structure which is wrapped into a Ruby object. Read more
Source§fn get_data_mut<'a, T>(
&'a mut self,
wrapper: &'a dyn DataTypeWrapper<T>,
) -> &mut T
fn get_data_mut<'a, T>( &'a mut self, wrapper: &'a dyn DataTypeWrapper<T>, ) -> &mut T
Gets a mutable reference to the Rust structure which is wrapped into a Ruby object.
Source§fn define_method<I: Object, O: Object>(
&mut self,
name: &str,
callback: Callback<I, O>,
)
fn define_method<I: Object, O: Object>( &mut self, name: &str, callback: Callback<I, O>, )
Defines an instance method for the given class or object. Read more
Source§fn define_private_method<I: Object, O: Object>(
&mut self,
name: &str,
callback: Callback<I, O>,
)
fn define_private_method<I: Object, O: Object>( &mut self, name: &str, callback: Callback<I, O>, )
Defines a private instance method for the given class or object. Read more
Source§fn define_singleton_method<I: Object, O: Object>(
&mut self,
name: &str,
callback: Callback<I, O>,
)
fn define_singleton_method<I: Object, O: Object>( &mut self, name: &str, callback: Callback<I, O>, )
Defines a class method for given class or singleton method for object. Read more
Source§fn def<I: Object, O: Object>(&mut self, name: &str, callback: Callback<I, O>)
fn def<I: Object, O: Object>(&mut self, name: &str, callback: Callback<I, O>)
An alias for
define_method
(similar to Ruby syntax def some_method
).Source§fn def_private<I: Object, O: Object>(
&mut self,
name: &str,
callback: Callback<I, O>,
)
fn def_private<I: Object, O: Object>( &mut self, name: &str, callback: Callback<I, O>, )
An alias for
define_private_method
(similar to Ruby syntax private def some_method
).Source§fn def_self<I: Object, O: Object>(
&mut self,
name: &str,
callback: Callback<I, O>,
)
fn def_self<I: Object, O: Object>( &mut self, name: &str, callback: Callback<I, O>, )
An alias for
define_singleton_method
(similar to Ruby def self.some_method
).Source§unsafe fn send(&self, method: &str, arguments: &[AnyObject]) -> AnyObject
unsafe fn send(&self, method: &str, arguments: &[AnyObject]) -> AnyObject
Calls a given method on an object similarly to Ruby
Object#send
method Read moreSource§fn respond_to(&self, method: &str) -> bool
fn respond_to(&self, method: &str) -> bool
Checks whether the object responds to given method Read more
Source§fn protect_send(
&self,
method: &str,
arguments: &[AnyObject],
) -> Result<AnyObject, AnyException>
fn protect_send( &self, method: &str, arguments: &[AnyObject], ) -> Result<AnyObject, AnyException>
protect_send
returns Result<AnyObject, AnyObject> Read moreSource§fn protect_public_send(
&self,
method: &str,
arguments: &[AnyObject],
) -> Result<AnyObject, AnyException>
fn protect_public_send( &self, method: &str, arguments: &[AnyObject], ) -> Result<AnyObject, AnyException>
protect_public_send
returns Result<AnyObject, AnyObject> Read moreSource§fn to_any_object(&self) -> AnyObject
fn to_any_object(&self) -> AnyObject
Converts struct to
AnyObject
Read moreSource§fn instance_variable_get(&self, variable: &str) -> AnyObject
fn instance_variable_get(&self, variable: &str) -> AnyObject
Gets an instance variable of object Read more
Source§fn instance_variable_set<T: Object>(
&mut self,
variable: &str,
value: T,
) -> AnyObject
fn instance_variable_set<T: Object>( &mut self, variable: &str, value: T, ) -> AnyObject
Sets an instance variable for object Read more
Source§unsafe fn to<T: Object>(&self) -> T
unsafe fn to<T: Object>(&self) -> T
Unsafely casts current object to the specified Ruby type Read more
Source§fn try_convert_to<T: VerifiedObject>(&self) -> Result<T, AnyException>
fn try_convert_to<T: VerifiedObject>(&self) -> Result<T, AnyException>
Safely casts current object to the specified Ruby type Read more
Source§impl TryConvert<AnyObject> for AnyException
impl TryConvert<AnyObject> for AnyException
Source§impl TryConvert<AnyObject> for RString
Implicit or nil
conversion
impl TryConvert<AnyObject> for RString
Implicit or nil
conversion
§Examples
use rutie::{RString, Fixnum, VM, TryConvert, NilClass, Object};
let four = Fixnum::new(4);
let result = RString::try_convert(four.to_any_object());
assert_eq!(result, Err(NilClass::new()));
let five = RString::new_utf8("5");
let result2 = RString::try_convert(five.to_any_object());
if let Ok(r) = result2 {
assert_eq!(r.to_str(), "5")
} else {
unreachable!()
}
Ruby:
four = 4
result = String.try_convert(four)
result == nil
five = "5"
result = String.try_convert(five)
result == "5"
Source§impl VerifiedObject for AnyObject
impl VerifiedObject for AnyObject
fn is_correct_type<T: Object>(_: &T) -> bool
fn error_message() -> &'static str
Auto Trait Implementations§
impl Freeze for AnyObject
impl RefUnwindSafe for AnyObject
impl Send for AnyObject
impl Sync for AnyObject
impl Unpin for AnyObject
impl UnwindSafe for AnyObject
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more