[][src]Struct gitlab::api::SudoContext

pub struct SudoContext<'a> { /* fields omitted */ }

A sudo modifier that can be applied to any endpoint.

Implementations

impl<'a> SudoContext<'a>[src]

pub fn new<S>(sudo: S) -> Self where
    S: Into<Cow<'a, str>>, 
[src]

Create a new sudo context for API endpoints.

pub fn apply<E>(&self, endpoint: E) -> Sudo<'a, E>[src]

Apply the context to an endpoint.

Trait Implementations

impl<'a> Clone for SudoContext<'a>[src]

impl<'a> Debug for SudoContext<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for SudoContext<'a>[src]

impl<'a> Send for SudoContext<'a>[src]

impl<'a> Sync for SudoContext<'a>[src]

impl<'a> Unpin for SudoContext<'a>[src]

impl<'a> UnwindSafe for SudoContext<'a>[src]

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> 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.