[][src]Struct gitlab::api::projects::labels::LabelBuilder

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

Builder for Label.

Implementations

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

pub fn project<VALUE: Into<NameOrId<'a>>>(&mut self, value: VALUE) -> &mut Self[src]

The project to query for the label.

pub fn label<VALUE: Into<NameOrId<'a>>>(&mut self, value: VALUE) -> &mut Self[src]

The ID or title of the label.

pub fn include_ancestor_groups(&mut self, value: bool) -> &mut Self[src]

Include ancestor groups.

Defaults to true.

pub fn build(&self) -> Result<Label<'a>, String>[src]

Builds a new Label.

Errors

If a required field has not been initialized.

Trait Implementations

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

impl<'a> Default for LabelBuilder<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for LabelBuilder<'a>

impl<'a> Send for LabelBuilder<'a>

impl<'a> Sync for LabelBuilder<'a>

impl<'a> Unpin for LabelBuilder<'a>

impl<'a> UnwindSafe for LabelBuilder<'a>

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