Struct CSharpBuilder

Source
pub struct CSharpBuilder<'a> { /* private fields */ }
Expand description

The CSharpBuilder is used to load a Rust script string, and convert it into the appropriate C# script as a string.

Implementations§

Source§

impl<'a> CSharpBuilder<'a>

Source

pub fn new( script: &str, dll_name: &str, configuration: &'a mut CSharpConfiguration, ) -> Result<CSharpBuilder<'a>, Error>

Creates a new C# Builder from a Rust script string, the name of the library C# is going to make calls to (the .so/.dll file), and a configuration.

Note that this will immediately parse the rust script and extract its symbols. As such, this can return a parse error.

Source

pub fn build(&mut self) -> Result<String, Error>

This function will return the C# script. Should be called after the C# Builder is setup.

Source

pub fn set_namespace(&mut self, namespace: &str)

Sets the namespace the C# script should use to generate its functions in. If not set, no namespace will be used.

Source

pub fn set_type(&mut self, type_name: &str)

Sets the type that will be wrapped around the generated C# script. If not set, no type will be used.

Source

pub fn add_using(&mut self, using: &str)

Adds a using to the top of the C# script.

Auto Trait Implementations§

§

impl<'a> Freeze for CSharpBuilder<'a>

§

impl<'a> RefUnwindSafe for CSharpBuilder<'a>

§

impl<'a> !Send for CSharpBuilder<'a>

§

impl<'a> !Sync for CSharpBuilder<'a>

§

impl<'a> Unpin for CSharpBuilder<'a>

§

impl<'a> !UnwindSafe for CSharpBuilder<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.