#[non_exhaustive]pub enum FlowFileQueuesApiDispatch<'a> {
V2_6_0(V2_6_0FlowFileQueuesApi<'a>),
V2_7_2(V2_7_2FlowFileQueuesApi<'a>),
V2_8_0(V2_8_0FlowFileQueuesApi<'a>),
}Expand description
Dynamic dispatch enum for the FlowFileQueues API. Use via the FlowFileQueuesApi trait.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
V2_6_0(V2_6_0FlowFileQueuesApi<'a>)
V2_7_2(V2_7_2FlowFileQueuesApi<'a>)
V2_8_0(V2_8_0FlowFileQueuesApi<'a>)
Trait Implementations§
Source§impl FlowFileQueuesApi for FlowFileQueuesApiDispatch<'_>
impl FlowFileQueuesApi for FlowFileQueuesApiDispatch<'_>
Source§fn drop_requests<'b>(
&'b self,
id: &'b str,
) -> impl FlowFileQueuesDropRequestsApi + 'b
fn drop_requests<'b>( &'b self, id: &'b str, ) -> impl FlowFileQueuesDropRequestsApi + 'b
Returns a sub-resource accessor for config operations. Read more
Source§fn flowfiles<'b>(&'b self, id: &'b str) -> impl FlowFileQueuesFlowfilesApi + 'b
fn flowfiles<'b>(&'b self, id: &'b str) -> impl FlowFileQueuesFlowfilesApi + 'b
Returns a sub-resource accessor for config operations. Read more
Source§fn listing_requests<'b>(
&'b self,
id: &'b str,
) -> impl FlowFileQueuesListingRequestsApi + 'b
fn listing_requests<'b>( &'b self, id: &'b str, ) -> impl FlowFileQueuesListingRequestsApi + 'b
Returns a sub-resource accessor for config operations. Read more
Auto Trait Implementations§
impl<'a> Freeze for FlowFileQueuesApiDispatch<'a>
impl<'a> !RefUnwindSafe for FlowFileQueuesApiDispatch<'a>
impl<'a> Send for FlowFileQueuesApiDispatch<'a>
impl<'a> Sync for FlowFileQueuesApiDispatch<'a>
impl<'a> Unpin for FlowFileQueuesApiDispatch<'a>
impl<'a> UnsafeUnpin for FlowFileQueuesApiDispatch<'a>
impl<'a> !UnwindSafe for FlowFileQueuesApiDispatch<'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