Struct oso::ClassBuilder[][src]

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 set_into_iter<F, I, V>(self, f: F) -> Self where
    F: Fn(&T) -> I + Send + Sync + 'static,
    I: Iterator<Item = V> + Clone + Send + Sync + 'static,
    V: ToPolarResult, 
[src]

Set a method to convert instances into iterators

pub fn with_iter<V>(self) -> Self where
    T: IntoIterator<Item = V> + Clone,
    <T as IntoIterator>::IntoIter: Clone + Send + Sync + 'static,
    V: ToPolarResult, 
[src]

Use the existing IntoIterator implementation to convert instances into iterators

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_constant<V: ToPolar + Clone + Send + Sync + 'static>(
    self,
    value: V,
    name: &'static str
) -> Self
[src]

Add a RegisterHook on the class that will register the given constant once the class is registered.

pub fn add_method<F, Args, R>(self, name: &'static str, f: F) -> Self where
    Args: FromPolarList,
    F: Method<T, Args, Result = R>,
    R: ToPolarResult + '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>,
    I: ToPolarResult + 'static,
    <<F as Method<T, Args>>::Result as IntoIterator>::IntoIter: Iterator<Item = I> + Clone + Send + Sync + '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: ToPolarResult + '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]

fn clone(&self) -> ClassBuilder<T>[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

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]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.