pub struct EventSubscriptionApiClient { /* private fields */ }Implementations§
Source§impl EventSubscriptionApiClient
impl EventSubscriptionApiClient
pub fn new(configuration: Rc<Configuration>) -> EventSubscriptionApiClient
Trait Implementations§
Source§impl EventSubscriptionApi for EventSubscriptionApiClient
impl EventSubscriptionApi for EventSubscriptionApiClient
fn get_event_subscriptions( &self, event_subscription_id: Option<&str>, event_name: Option<&str>, event_type: Option<&str>, execution_id: Option<&str>, process_instance_id: Option<&str>, activity_id: Option<&str>, tenant_id_in: Option<&str>, without_tenant_id: Option<bool>, include_event_subscriptions_without_tenant_id: Option<bool>, sort_by: Option<&str>, sort_order: Option<&str>, first_result: Option<i32>, max_results: Option<i32>, ) -> Result<Vec<EventSubscriptionDto>, Error>
fn get_event_subscriptions_count( &self, event_subscription_id: Option<&str>, event_name: Option<&str>, event_type: Option<&str>, execution_id: Option<&str>, process_instance_id: Option<&str>, activity_id: Option<&str>, tenant_id_in: Option<&str>, without_tenant_id: Option<bool>, include_event_subscriptions_without_tenant_id: Option<bool>, ) -> Result<CountResultDto, Error>
Auto Trait Implementations§
impl Freeze for EventSubscriptionApiClient
impl !RefUnwindSafe for EventSubscriptionApiClient
impl !Send for EventSubscriptionApiClient
impl !Sync for EventSubscriptionApiClient
impl Unpin for EventSubscriptionApiClient
impl !UnwindSafe for EventSubscriptionApiClient
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more