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

Implementations

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

Create a new class builder with a given constructor.

Set the constructor function to use for polar new statements.

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

Set a method to convert instances into iterators

Use the existing IntoIterator implementation to convert instances into iterators

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

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

Set the name of the polar class.

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

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

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

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

Finish building a build the class

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

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

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

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

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

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

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more