Struct safer_ffi::headers::languages::CSharp

source ·
pub struct CSharp;
Available on crate feature headers only.

Trait Implementations§

source§

impl HeaderLanguage for CSharp

source§

fn emit_docs( &self, ctx: &mut dyn Definer, docs: &'_ [&'_ str], indent: &Indentation ) -> Result<()>

source§

fn emit_simple_enum( self: &CSharp, ctx: &mut dyn Definer, docs: &'_ [&'_ str], self_ty: &dyn PhantomCType, backing_integer: Option<&dyn PhantomCType>, variants: &[EnumVariant<'_>] ) -> Result<()>

source§

fn emit_struct( &self, ctx: &mut dyn Definer, docs: &'_ [&'_ str], self_ty: &dyn PhantomCType, fields: &[StructField<'_>] ) -> Result<()>

source§

fn emit_opaque_type( &self, ctx: &mut dyn Definer, docs: &'_ [&'_ str], self_ty: &dyn PhantomCType ) -> Result<()>

source§

fn emit_function( &self, ctx: &mut dyn Definer, docs: &'_ [&'_ str], fname: &str, args: &[FunctionArg<'_>], ret_ty: &dyn PhantomCType ) -> Result<()>

source§

fn emit_constant( &self, ctx: &mut dyn Definer, docs: &'_ [&'_ str], name: &str, ty: &dyn PhantomCType, value: &dyn Debug ) -> Result<()>

source§

fn language_name(&self) -> &'static str

Auto Trait Implementations§

§

impl Freeze for CSharp

§

impl RefUnwindSafe for CSharp

§

impl Send for CSharp

§

impl Sync for CSharp

§

impl Unpin for CSharp

§

impl UnwindSafe for CSharp

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> CompatExt for T

source§

fn compat(self) -> Compat<T>

Applies the Compat adapter by value. Read more
source§

fn compat_ref(&self) -> Compat<&T>

Applies the Compat adapter by shared reference. Read more
source§

fn compat_mut(&mut self) -> Compat<&mut T>

Applies the Compat adapter by mutable reference. Read more
source§

impl<T> FitForCBox for T

§

type CBoxWrapped = Box_<T>

Available on crate feature alloc only.
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> ManuallyDropMut for T

§

type Ret = ManuallyDrop<T>

source§

fn manually_drop_mut<'__>(&'__ mut self) -> &'__ mut ManuallyDrop<T>

source§

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

§

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>,

§

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.
source§

impl<T> UpcastAny for T
where T: 'static,

source§

fn upcast_any(&self) -> &(dyn Any + 'static)

Available on crate feature headers only.