Struct janus_plugin::PluginResult
[−]
[src]
pub struct PluginResult { /* fields omitted */ }A Janus plugin result; what a plugin returns to the gateway as a direct response to a signalling message.
Methods
impl PluginResult[src]
unsafe fn new(
type_: PluginResultType,
text: *const c_char,
content: *mut RawJanssonValue
) -> Self[src]
type_: PluginResultType,
text: *const c_char,
content: *mut RawJanssonValue
) -> Self
Creates a new plugin result.
fn ok(response: JanssonValue) -> Self[src]
Creates a plugin result indicating a synchronously successful request. The provided response JSON will be passed back to the client.
fn ok_wait(hint: Option<&'static CStr>) -> Self[src]
Creates a plugin result indicating an asynchronous request in progress. If provided, the hint text will be synchronously passed back to the client in the acknowledgement.
fn error(msg: &'static CStr) -> Self[src]
Creates a plugin result indicating an error. The provided error text will be synchronously passed back to the client.
fn into_raw(self) -> *mut RawPluginResult[src]
Transfers ownership of this result to the wrapped raw pointer. The consumer is responsible for calling
janus_plugin_result_destroy on the pointer when finished.
Trait Implementations
impl Debug for PluginResult[src]
impl Deref for PluginResult[src]
type Target = RawPluginResult
The resulting type after dereferencing.
fn deref(&self) -> &RawPluginResult[src]
Dereferences the value.