[][src]Struct rutie::Encoding

pub struct Encoding { /* fields omitted */ }

Methods

impl Encoding[src]

pub fn utf8() -> Self[src]

Creates a UTF-8 instance of Encoding.

Examples

use rutie::{Encoding, VM};

Encoding::utf8();

Ruby:

Encoding::UTF_8

pub fn us_ascii() -> Self[src]

Creates a US-ASCII instance of Encoding.

Examples

use rutie::{Encoding, VM};

Encoding::us_ascii();

Ruby:

Encoding::US_ASCII

pub fn default_external() -> Self[src]

Creates a new instance of Encoding from the default external encoding.

Examples

use rutie::{Encoding, VM};

Encoding::default_external();

Ruby:

Encoding.default_external

pub fn default_internal() -> Result<Self, NilClass>[src]

Creates an instance of Ok(Encoding) from the default internal encoding if there is one, otherwise it returns Err(NilClass).

Examples

use rutie::{Encoding, VM};

Encoding::default_internal();

Ruby:

Encoding.default_internal

pub fn name(&self) -> String[src]

Returns encoding name.

Examples

use rutie::{RString, Encoding, VM};

let enc = Encoding::utf8();

assert_eq!(enc.name(), "UTF-8")

Ruby:

enc = Encoding::UTF_8

enc.name == "UTF-8"

pub fn find(s: &str) -> Result<Encoding, AnyException>[src]

Find an Ok(Encoding) for given string name or return an Err(AnyException).

Examples

use rutie::{VM, Encoding};

let encoding = Encoding::find("UTF-8");

match encoding {
    Ok(enc) => assert_eq!(enc.name(), "UTF-8"),
    Err(_) => unreachable!()
}

Ruby:

encoding = Encoding.find("UTF-8")

encoding.name == "UTF-8"

The following is an example where a Ruby exception object of ArgumentError is returned.

use rutie::{VM, Encoding, Exception};

let encoding = Encoding::find("UTF8");

match encoding {
    Ok(_) => unreachable!(),
    Err(e) => assert_eq!(e.message(), "unknown encoding name - UTF8")
}

pub fn is_compatible(
    obj1: &impl Object,
    obj2: &impl Object
) -> Result<Self, NilClass>
[src]

Returns an instance of Ok(Encoding) if the objects are compatible encodings, otherwise it returns Err(NilClass).

Examples

use rutie::{Encoding, VM, RString, NilClass};

let utf8 = RString::new_utf8("asdf");
let us_ascii= RString::new_usascii_unchecked("qwerty");

let result = Encoding::is_compatible(&utf8, &us_ascii);

assert!(result.is_ok());

let result = Encoding::is_compatible(&utf8, &NilClass::new());

assert!(result.is_err());

Trait Implementations

impl Object for Encoding[src]

fn class(&self) -> Class[src]

Returns a class of current object. Read more

fn singleton_class(&self) -> Class[src]

Returns a singleton class of current object. Read more

fn get_data<'a, T>(&'a self, wrapper: &'a dyn DataTypeWrapper<T>) -> &T[src]

Gets an immutable reference to the Rust structure which is wrapped into a Ruby object. Read more

fn get_data_mut<'a, T>(
    &'a mut self,
    wrapper: &'a dyn DataTypeWrapper<T>
) -> &mut T
[src]

Gets a mutable reference to the Rust structure which is wrapped into a Ruby object.

fn define<F: Fn(&mut Self)>(&mut self, f: F) -> &Self[src]

Wraps calls to the object. Read more

fn define_method<I: Object, O: Object>(
    &mut self,
    name: &str,
    callback: Callback<I, O>
)
[src]

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

fn define_private_method<I: Object, O: Object>(
    &mut self,
    name: &str,
    callback: Callback<I, O>
)
[src]

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

fn define_singleton_method<I: Object, O: Object>(
    &mut self,
    name: &str,
    callback: Callback<I, O>
)
[src]

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

fn def<I: Object, O: Object>(&mut self, name: &str, callback: Callback<I, O>)[src]

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

fn def_private<I: Object, O: Object>(
    &mut self,
    name: &str,
    callback: Callback<I, O>
)
[src]

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

fn def_self<I: Object, O: Object>(
    &mut self,
    name: &str,
    callback: Callback<I, O>
)
[src]

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

unsafe fn send(&self, method: &str, arguments: &[AnyObject]) -> AnyObject[src]

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

fn equals<T: Object>(&self, other: &T) -> bool[src]

Alias for Ruby's == Read more

fn case_equals<T: Object>(&self, other: &T) -> bool[src]

Alias for Ruby's === Read more

fn is_eql<T: Object>(&self, other: &T) -> bool[src]

Alias for Ruby's eql? Read more

fn is_equal<T: Object>(&self, other: &T) -> bool[src]

Alias for Ruby's equal? Read more

fn respond_to(&self, method: &str) -> bool[src]

Checks whether the object responds to given method Read more

fn protect_send(
    &self,
    method: &str,
    arguments: &[AnyObject]
) -> Result<AnyObject, AnyException>
[src]

protect_send returns Result<AnyObject, AnyObject> Read more

fn protect_public_send(
    &self,
    method: &str,
    arguments: &[AnyObject]
) -> Result<AnyObject, AnyException>
[src]

protect_public_send returns Result<AnyObject, AnyObject> Read more

fn is_nil(&self) -> bool[src]

Checks whether the object is nil Read more

fn to_any_object(&self) -> AnyObject[src]

Converts struct to AnyObject Read more

fn instance_variable_get(&self, variable: &str) -> AnyObject[src]

Gets an instance variable of object Read more

fn instance_variable_set<T: Object>(
    &mut self,
    variable: &str,
    value: T
) -> AnyObject
[src]

Sets an instance variable for object Read more

fn is_frozen(&self) -> bool[src]

Returns the freeze status of the object. Read more

fn freeze(&mut self) -> Self[src]

Prevents further modifications to the object. Read more

unsafe fn to<T: Object>(&self) -> T[src]

Unsafely casts current object to the specified Ruby type Read more

fn try_convert_to<T: VerifiedObject>(&self) -> Result<T, AnyException>[src]

Safely casts current object to the specified Ruby type Read more

fn ty(&self) -> ValueType[src]

Determines the value type of the object Read more

impl VerifiedObject for Encoding[src]

impl Default for Encoding[src]

impl PartialEq<Encoding> for Encoding[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl From<Value> for Encoding[src]

impl Into<Value> for Encoding[src]

impl Into<AnyObject> for Encoding[src]

impl Debug for Encoding[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]