Struct ruru::Class [] [src]

pub struct Class {
    // some fields omitted
}

Class

Also see def, def_self, define and some more functions from Object trait.

#[macro_use] extern crate ruru;

use std::error::Error;

use ruru::{Class, Fixnum, Object, VM};

methods!(
   Fixnum,
   itself,

    fn pow(exp: Fixnum) -> Fixnum {
        // `exp` is not a valid `Fixnum`, raise an exception
        if let Err(ref error) = exp {
            VM::raise(error.to_exception(), error.description());
        }

        // We can safely unwrap here, because an exception was raised if `exp` is `Err`
        let exp = exp.unwrap().to_i64() as u32;

        Fixnum::new(itself.to_i64().pow(exp))
    }
);

fn main() {
    Class::from_existing("Fixnum").define(|itself| {
        itself.def("pow", pow);
    });
}

Ruby:

class Fixnum
  def pow(exp)
    raise TypeError unless exp.is_a?(Fixnum)

    self ** exp
  end
end

Methods

impl Class
[src]

Creates a new Class.

superclass can receive the following values:

  • None to inherit from Object class (standard Ruby behavior when superclass is not given explicitly);
  • Some(&Class) to inherit from the given class

Examples

use ruru::{Class, VM};

let basic_record_class = Class::new("BasicRecord", None);

assert_eq!(basic_record_class, Class::from_existing("BasicRecord"));
assert_eq!(basic_record_class.superclass(), Some(Class::from_existing("Object")));

let record_class = Class::new("Record", Some(&basic_record_class));

assert_eq!(record_class, Class::from_existing("Record"));
assert_eq!(record_class.superclass(), Some(Class::from_existing("BasicRecord")));

Ruby:

class BasicRecord
end

class Record < BasicRecord
end

BasicRecord.superclass == Object

Record.superclass == BasicRecord

Retrieves an existing Class object.

Examples

use ruru::{Class, VM};

let class = Class::new("Record", None);

assert_eq!(class, Class::from_existing("Record"));

Ruby:

class Record
end

# get class

Record

# or

Object.const_get('Record')

Creates a new instance of Class

Arguments must be passed as a vector of AnyObject (see example).

Examples

use ruru::{Class, Fixnum, Object};

// Without arguments
Class::from_existing("Hello").new_instance(vec![]);

// With arguments passing arguments to constructor
let arguments = vec![
    Fixnum::new(1).to_any_object(),
    Fixnum::new(2).to_any_object()
];

Class::from_existing("Worker").new_instance(arguments);

Ruby:

Hello.new

Worker.new(1, 2)

Returns a superclass of the current class

Examples

use ruru::{Class, Object, VM};

assert_eq!(
    Class::from_existing("Array").superclass(),
    Some(Class::from_existing("Object"))
);

assert_eq!(Class::from_existing("BasicObject").superclass(), None);

Returns a Vector of ancestors of current class

Examples

Getting all the ancestors

use ruru::{Class, VM};

let true_class_ancestors = Class::from_existing("TrueClass").ancestors();

let expected_ancestors = vec![
    Class::from_existing("TrueClass"),
    Class::from_existing("Object"),
    Class::from_existing("Kernel"),
    Class::from_existing("BasicObject")
];

assert_eq!(true_class_ancestors, expected_ancestors);

Searching for an ancestor

use ruru::{Class, VM};

let basic_record_class = Class::new("BasicRecord", None);
let record_class = Class::new("Record", Some(&basic_record_class));

let ancestors = record_class.ancestors();

assert!(ancestors.iter().any(|class| *class == basic_record_class));

Retrieves a Class nested to current Class.

Examples

use ruru::{Class, Object, VM};

Class::new("Outer", None).define(|itself| {
    itself.define_nested_class("Inner", None);
});

Class::from_existing("Outer").get_nested_class("Inner");

Ruby:

class Outer
  class Inner
  end
end

Outer::Inner

# or

Outer.const_get('Inner')

Creates a new Class nested into current class.

superclass can receive the following values:

  • None to inherit from Object class (standard Ruby behavior when superclass is not given explicitly);
  • Some(&class) to inherit from the given class

Examples

use ruru::{Class, Object, VM};

Class::new("Outer", None).define(|itself| {
    itself.define_nested_class("Inner", None);
});

Class::from_existing("Outer").get_nested_class("Inner");

Ruby:

class Outer
  class Inner
  end
end

Outer::Inner

# or

Outer.const_get('Inner')

Defines an attr_reader for class

Examples

use ruru::{Class, Object, VM};

Class::new("Test", None).define(|itself| {
    itself.attr_reader("reader");
});

Ruby:

class Test
  attr_reader :reader
end

Defines an attr_writer for class

Examples

use ruru::{Class, Object, VM};

Class::new("Test", None).define(|itself| {
    itself.attr_writer("writer");
});

Ruby:

class Test
  attr_writer :writer
end

Defines an attr_accessor for class

Examples

use ruru::{Class, Object, VM};

Class::new("Test", None).define(|itself| {
    itself.attr_accessor("accessor");
});

Ruby:

class Test
  attr_accessor :accessor
end

Trait Implementations

impl Debug for Class
[src]

Formats the value using the given formatter.

impl PartialEq for Class
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<Value> for Class
[src]

Performs the conversion.

impl Object for Class
[src]

Returns internal value of current object. Read more

Returns a class of current object. Read more

Returns a singleton class of current object. Read more

Wraps calls to the object. Read more

Defines an instance method for the given class or object. Read more

Defines a class method for given class or singleton method for object. Read more

An alias for define_method (similar to Ruby syntax def some_method).

An alias for define_singleton_method (similar to Ruby def self.some_method).

Calls a given method on an object similarly to Ruby Object#send method Read more

Checks whether the object responds to given method Read more

Checks whether the object is nil Read more

Converts struct to AnyObject Read more

Gets an instance variable of object Read more

Sets an instance variable for object Read more

Unsafely casts current object to the specified Ruby type Read more

Safely casts current object to the specified Ruby type Read more

Determines the value type of the object Read more

impl VerifiedObject for Class
[src]