[][src]Struct arangors::document::options::RemoveOptionsBuilder

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

Builder for RemoveOptions instances.

See RemoveOptions::builder() for more info.

Implementations

impl<__return_old, __silent> RemoveOptionsBuilder<((), __return_old, __silent)>[src]

pub fn wait_for_sync(
    self,
    wait_for_sync: bool
) -> RemoveOptionsBuilder<((Option<bool>,), __return_old, __silent)>
[src]

impl<__wait_for_sync, __silent> RemoveOptionsBuilder<(__wait_for_sync, (), __silent)>[src]

pub fn return_old(
    self,
    return_old: bool
) -> RemoveOptionsBuilder<(__wait_for_sync, (Option<bool>,), __silent)>
[src]

impl<__wait_for_sync, __return_old> RemoveOptionsBuilder<(__wait_for_sync, __return_old, ())>[src]

pub fn silent(
    self,
    silent: bool
) -> RemoveOptionsBuilder<(__wait_for_sync, __return_old, (Option<bool>,))>
[src]

impl<__wait_for_sync: RemoveOptionsBuilder_Optional<Option<bool>>, __return_old: RemoveOptionsBuilder_Optional<Option<bool>>, __silent: RemoveOptionsBuilder_Optional<Option<bool>>> RemoveOptionsBuilder<(__wait_for_sync, __return_old, __silent)>[src]

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

Finalise the builder and create its RemoveOptions instance

Auto Trait Implementations

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

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

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

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

impl<TypedBuilderFields> UnwindSafe for RemoveOptionsBuilder<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, U> Into<U> for T where
    U: From<T>, 
[src]

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.