[][src]Struct oso::ClassBuilder

pub struct ClassBuilder<T> { /* fields omitted */ }

Implementations

impl<T> ClassBuilder<T> where
    T: 'static, 
[src]

pub fn with_default() -> Self where
    T: Default,
    T: Send + Sync
[src]

Create a new class builder for a type that implements Default and use that as the constructor.

pub fn with_constructor<F, Args>(f: F) -> Self where
    F: Function<Args, Result = T>,
    T: Send + Sync,
    Args: FromPolarList
[src]

Create a new class builder with a given constructor.

pub fn set_constructor<F, Args>(self, f: F) -> Self where
    F: Function<Args, Result = T>,
    T: Send + Sync,
    Args: FromPolarList
[src]

Set the constructor function to use for polar new statements.

pub fn set_equality_check<F>(self, f: F) -> Self where
    F: Fn(&T, &T) -> bool + Send + Sync + 'static, 
[src]

Set an equality function to be used for polar == statements.

pub fn with_equality_check(self) -> Self where
    T: PartialEq<T>, 
[src]

Use PartialEq::eq as the equality check for polar == statements.

pub fn add_attribute_getter<F, R>(self, name: &'static str, f: F) -> Self where
    F: Fn(&T) -> R + Send + Sync + 'static,
    R: ToPolar,
    T: 'static, 
[src]

Add an attribute getter for statments like foo.bar `class.add_attribute_getter("bar", |instance| instance.bar)

pub fn name(self, name: &str) -> Self[src]

Set the name of the polar class.

pub fn add_method<F, Args, R>(self, name: &'static str, f: F) -> Self where
    Args: FromPolarList,
    F: Method<T, Args, Result = R>,
    R: ToPolarResults + 'static, 
[src]

Add a method for polar method calls like foo.plus(1) class.add_attribute_getter("bar", |instance, n| instance.foo + n)

pub fn add_iterator_method<F, Args, I>(self, name: &'static str, f: F) -> Self where
    Args: FromPolarList,
    F: Method<T, Args>,
    F::Result: IntoIterator<Item = I>,
    <<F as Method<T, Args>>::Result as IntoIterator>::IntoIter: Sized + 'static,
    I: ToPolarResults + 'static,
    T: 'static, 
[src]

A method that returns multiple values. Every element in the iterator returned by the method will be a separate polar return value.

pub fn add_class_method<F, Args, R>(self, name: &'static str, f: F) -> Self where
    F: Function<Args, Result = R>,
    Args: FromPolarList,
    R: ToPolarResults + 'static, 
[src]

A method that's called on the type instead of an instance. eg Foo.pi

pub fn build(self) -> Class[src]

Finish building a build the class

Trait Implementations

impl<T: Clone> Clone for ClassBuilder<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for ClassBuilder<T>

impl<T> Send for ClassBuilder<T> where
    T: Send

impl<T> Sync for ClassBuilder<T> where
    T: Sync

impl<T> Unpin for ClassBuilder<T> where
    T: Unpin

impl<T> !UnwindSafe for ClassBuilder<T>

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.