[−][src]Struct sm_ext::IPluginFunction
Trait Implementations
impl Debug for IPluginFunction[src]
impl ExecutableApi for IPluginFunction[src]
fn execute(&self) -> Result<cell_t, SPError>[src]
fn push<T: CallableParam>(&self, param: T) -> Result<(), SPError>[src]
impl ICallableApi for IPluginFunction[src]
fn push_int(&self, cell: i32) -> Result<(), SPError>[src]
fn push_float(&self, number: f32) -> Result<(), SPError>[src]
fn push_string(&self, string: &CStr) -> Result<(), SPError>[src]
impl<'a> TryFromPlugin<'a, cell_t> for IPluginFunction[src]
type Error = GetFunctionError
fn try_from_plugin(
ctx: &'a IPluginContext,
value: cell_t
) -> Result<Self, Self::Error>[src]
ctx: &'a IPluginContext,
value: cell_t
) -> Result<Self, Self::Error>
Auto Trait Implementations
impl RefUnwindSafe for IPluginFunction
impl !Send for IPluginFunction
impl !Sync for IPluginFunction
impl Unpin for IPluginFunction
impl UnwindSafe for IPluginFunction
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<'_, T, U> TryFromPlugin<'_, T> for U where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
fn try_from_plugin(
&IPluginContext,
T
) -> Result<U, <U as TryFromPlugin<'_, T>>::Error>[src]
&IPluginContext,
T
) -> Result<U, <U as TryFromPlugin<'_, T>>::Error>
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<'a, T, U> TryIntoPlugin<'a, U> for T where
U: TryFromPlugin<'a, T>, [src]
U: TryFromPlugin<'a, T>,
type Error = <U as TryFromPlugin<'a, T>>::Error
fn try_into_plugin(
Self,
&'a IPluginContext
) -> Result<U, <U as TryFromPlugin<'a, T>>::Error>[src]
Self,
&'a IPluginContext
) -> Result<U, <U as TryFromPlugin<'a, T>>::Error>