Struct PluginEnv

Source
#[repr(C)]
pub struct PluginEnv(/* private fields */);
Expand description

A companion structure, always passed as first argument of any plugin operation function, enabling the plugin to interact with the host implementation.

Implementations§

Source§

impl PluginEnv

Source

pub fn save_output(&self, v: PluginVal) -> Result<()>

Store a new plugin output.

Source

pub fn save_outputs(&self, v: &[PluginVal]) -> Result<()>

Store all the plugin outputs.

Source

pub fn print(&self, s: &str)

Print the provided string on the standard output.

Source

pub fn get_connection<T>(&self, field: ConnectionField) -> Result<T>
where T: TryFrom<PluginVal>,

Get a connection field.

Source

pub fn set_connection<T>(&mut self, field: ConnectionField, v: T) -> Result<()>
where T: Into<PluginVal>,

Set a connection field.

Source

pub fn get_recovery<'de, T>(&self, field: RecoveryField) -> T
where T: Deserialize<'de>,

Get a recovery field.

Source

pub fn set_recovery<T>(&mut self, field: RecoveryField, v: T) -> Result<()>
where T: Into<PluginVal>,

Set a recovery field.

Source

pub fn get_input<T>(&self, index: u32) -> Result<T>

Get an input.

Source

pub fn get_inputs(&self) -> Result<Vec<PluginVal>>

Get the inputs.

Source

pub fn get_bytes(&mut self, tag: u64, len: u64) -> Result<Vec<u8>>

Read some bytes and advances the related buffer (i.e., multiple calls give different results).

Source

pub fn put_bytes(&mut self, tag: u64, b: &[u8]) -> Result<usize>

Write some bytes and advances the related buffer (i.e., multiple calls gives different results).

Source

pub fn register(&mut self, r: Registration) -> Result<()>

Perform a registration to the host implementation. This operation is usually performed during the initialization of the plugin.

Source

pub fn set_timer( &mut self, ts: UnixInstant, id: u64, timer_id: u64, ) -> Result<()>

Set a timer at the provided time to call the given callback function with the provided name.

Returns the identifier to the timer event, as provided as argument.

Source

pub fn cancel_timer(&mut self, id: u64) -> Result<()>

Cancel the timer event having the identifier provided.

Source

pub fn get_unix_instant(&self) -> Result<UnixInstant>

Get the current UNIX instant.

Source

pub fn enable(&self)

Fully enable the plugin operations. Such a call is needed to enable plugin operations that are not always_enabled().

Source

pub fn poctl(&mut self, id: u64, params: &[PluginVal]) -> Result<Vec<PluginVal>>

Invoke a plugin operation control operation.

Auto Trait Implementations§

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

Source§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
Source§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
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> LayoutRaw for T

Source§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Returns the layout of the type.
Source§

impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
where T: SharedNiching<N1, N2>, N1: Niching<T>, N2: Niching<T>,

Source§

unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool

Returns whether the given value has been niched. Read more
Source§

fn resolve_niched(out: Place<NichedOption<T, N1>>)

Writes data to out indicating that a T is niched.
Source§

impl<T> Pointee for T

Source§

type Metadata = ()

The metadata type for pointers and references to this type.
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.