Struct lexoffice::model::event_subscriptions::WebhookCallbackBuilder[][src]

#[must_use]pub struct WebhookCallbackBuilder<TypedBuilderFields> { /* fields omitted */ }

Builder for WebhookCallback instances.

See WebhookCallback::builder() for more info.

Implementations

impl<__event_type, __resource_id> WebhookCallbackBuilder<((), __event_type, __resource_id)>[src]

pub fn organization_id(
    self,
    organization_id: impl Into<Uuid>
) -> WebhookCallbackBuilder<((Uuid,), __event_type, __resource_id)>
[src]

impl<__organization_id, __resource_id> WebhookCallbackBuilder<(__organization_id, (), __resource_id)>[src]

pub fn event_type(
    self,
    event_type: impl Into<EventType>
) -> WebhookCallbackBuilder<(__organization_id, (EventType,), __resource_id)>
[src]

impl<__organization_id, __event_type> WebhookCallbackBuilder<(__organization_id, __event_type, ())>[src]

pub fn resource_id(
    self,
    resource_id: impl Into<Uuid>
) -> WebhookCallbackBuilder<(__organization_id, __event_type, (Uuid,))>
[src]

impl WebhookCallbackBuilder<((Uuid,), (EventType,), (Uuid,))>[src]

pub fn build(self) -> WebhookCallback[src]

Finalise the builder and create its WebhookCallback instance

Trait Implementations

impl<TypedBuilderFields> Clone for WebhookCallbackBuilder<TypedBuilderFields> where
    TypedBuilderFields: Clone
[src]

Auto Trait Implementations

impl<TypedBuilderFields> RefUnwindSafe for WebhookCallbackBuilder<TypedBuilderFields> where
    TypedBuilderFields: RefUnwindSafe

impl<TypedBuilderFields> Send for WebhookCallbackBuilder<TypedBuilderFields> where
    TypedBuilderFields: Send

impl<TypedBuilderFields> Sync for WebhookCallbackBuilder<TypedBuilderFields> where
    TypedBuilderFields: Sync

impl<TypedBuilderFields> Unpin for WebhookCallbackBuilder<TypedBuilderFields> where
    TypedBuilderFields: Unpin

impl<TypedBuilderFields> UnwindSafe for WebhookCallbackBuilder<TypedBuilderFields> where
    TypedBuilderFields: UnwindSafe

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<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.