pub struct FlowFileQueuesDropRequestsApiDispatch<'a> { /* private fields */ }Expand description
Sub-resource dispatch struct for FlowFileQueuesDropRequestsApi.
Trait Implementations§
Source§impl FlowFileQueuesDropRequestsApi for FlowFileQueuesDropRequestsApiDispatch<'_>
impl FlowFileQueuesDropRequestsApi for FlowFileQueuesDropRequestsApiDispatch<'_>
Source§async fn create_drop_request(&self) -> Result<DropRequestDto, NifiError>
async fn create_drop_request(&self) -> Result<DropRequestDto, NifiError>
Creates a request to drop the contents of the queue in this connection. Read more
Source§async fn get_drop_request(
&self,
drop_request_id: &str,
) -> Result<DropRequestDto, NifiError>
async fn get_drop_request( &self, drop_request_id: &str, ) -> Result<DropRequestDto, NifiError>
Gets the current status of a drop request for the specified connection. Read more
Source§async fn remove_drop_request(
&self,
drop_request_id: &str,
) -> Result<DropRequestDto, NifiError>
async fn remove_drop_request( &self, drop_request_id: &str, ) -> Result<DropRequestDto, NifiError>
Cancels and/or removes a request to drop the contents of this connection. Read more
Auto Trait Implementations§
impl<'a> Freeze for FlowFileQueuesDropRequestsApiDispatch<'a>
impl<'a> !RefUnwindSafe for FlowFileQueuesDropRequestsApiDispatch<'a>
impl<'a> Send for FlowFileQueuesDropRequestsApiDispatch<'a>
impl<'a> Sync for FlowFileQueuesDropRequestsApiDispatch<'a>
impl<'a> Unpin for FlowFileQueuesDropRequestsApiDispatch<'a>
impl<'a> UnsafeUnpin for FlowFileQueuesDropRequestsApiDispatch<'a>
impl<'a> !UnwindSafe for FlowFileQueuesDropRequestsApiDispatch<'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