[][src]Struct azure_functions_durable::Endpoint

pub struct Endpoint { /* fields omitted */ }

Represents a Durable Functions HTTP API endpoint.

Methods

impl Endpoint[src]

pub fn new(status_query_url: Url) -> Self[src]

Create a new endpoint from a status query URL.

pub fn task_hub(&self) -> &str[src]

Gets the task hub associated with the endpoint.

pub fn create_new_instance_url(
    &self,
    function_name: &str,
    instance_id: Option<&str>
) -> Url
[src]

Gets the "create new instance" URL from the endpoint.

pub fn status_query_url(&self, instance_id: Option<&str>) -> Url[src]

Gets the "status query" URL.

pub fn purge_history_url(&self, instance_id: Option<&str>) -> Url[src]

Gets the "purge history" URL.

pub fn rewind_url(&self, instance_id: &str, reason: &str) -> Url[src]

Gets the "rewind history" URL.

pub fn raise_event_url(&self, instance_id: &str, event_name: &str) -> Url[src]

Gets the "raise event" URL.

pub fn terminate_url(&self, instance_id: &str, reason: &str) -> Url[src]

Gets the "terminate instance" URL.

Trait Implementations

impl Clone for Endpoint[src]

impl Debug for Endpoint[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]