pub struct DynamicOutputPortsApi<'a> { /* private fields */ }Expand description
Dynamic dispatch wrapper for the OutputPorts API.
Implementations§
Source§impl<'a> DynamicOutputPortsApi<'a>
impl<'a> DynamicOutputPortsApi<'a>
Sourcepub async fn clear_bulletins_3(
&self,
id: &str,
body: &Value,
) -> Result<ClearBulletinsResultEntity, NifiError>
pub async fn clear_bulletins_3( &self, id: &str, body: &Value, ) -> Result<ClearBulletinsResultEntity, NifiError>
Clears bulletins for an output port
Sourcepub async fn get_output_port(&self, id: &str) -> Result<PortEntity, NifiError>
pub async fn get_output_port(&self, id: &str) -> Result<PortEntity, NifiError>
Gets an output port
Sourcepub async fn remove_output_port(
&self,
id: &str,
version: Option<&str>,
client_id: Option<&str>,
disconnected_node_acknowledged: Option<bool>,
) -> Result<PortEntity, NifiError>
pub async fn remove_output_port( &self, id: &str, version: Option<&str>, client_id: Option<&str>, disconnected_node_acknowledged: Option<bool>, ) -> Result<PortEntity, NifiError>
Deletes an output port
Sourcepub async fn update_output_port(
&self,
id: &str,
body: &Value,
) -> Result<PortEntity, NifiError>
pub async fn update_output_port( &self, id: &str, body: &Value, ) -> Result<PortEntity, NifiError>
Updates an output port
Sourcepub async fn update_run_status_3(
&self,
id: &str,
body: &Value,
) -> Result<ProcessorEntity, NifiError>
pub async fn update_run_status_3( &self, id: &str, body: &Value, ) -> Result<ProcessorEntity, NifiError>
Updates run status of an output-port
Auto Trait Implementations§
impl<'a> Freeze for DynamicOutputPortsApi<'a>
impl<'a> !RefUnwindSafe for DynamicOutputPortsApi<'a>
impl<'a> Send for DynamicOutputPortsApi<'a>
impl<'a> Sync for DynamicOutputPortsApi<'a>
impl<'a> Unpin for DynamicOutputPortsApi<'a>
impl<'a> UnsafeUnpin for DynamicOutputPortsApi<'a>
impl<'a> !UnwindSafe for DynamicOutputPortsApi<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more