Proxy

Struct Proxy 

Source
pub struct Proxy<P> { /* private fields */ }
Expand description

A proxy object for Plugin

Use crate::output_plugin_proxy instead of using this directly.

Implementations§

Source§

impl<P> Proxy<P>
where P: Plugin,

Source

pub const fn new() -> Self

Source

pub unsafe fn register(&self, def: *mut flb_plugin_proxy_def) -> c_int

Source

pub unsafe fn unregister(&self, _def: *mut flb_plugin_proxy_def) -> c_int

Source

pub unsafe fn init(&self, plugin: *mut flbgo_output_plugin) -> c_int

Source

pub unsafe fn flush( &self, ctx: *mut c_void, data: *const u8, len: c_int, tag: *const i8, ) -> c_int

Source

pub unsafe fn exit(&self, ctx: *mut c_void) -> c_int

Auto Trait Implementations§

§

impl<P> Freeze for Proxy<P>

§

impl<P> RefUnwindSafe for Proxy<P>
where P: RefUnwindSafe,

§

impl<P> Send for Proxy<P>
where P: Send,

§

impl<P> Sync for Proxy<P>
where P: Sync,

§

impl<P> Unpin for Proxy<P>
where P: Unpin,

§

impl<P> UnwindSafe for Proxy<P>
where P: UnwindSafe,

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.