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

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

Builder for Labels.

Implementations

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

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

The project to query for labels.

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

Include issue and merge request counts..

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

Include ancestor groups.

Defaults to true.

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

Builds a new Labels.

Errors

If a required field has not been initialized.

Trait Implementations

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for LabelsBuilder<'a>

impl<'a> Send for LabelsBuilder<'a>

impl<'a> Sync for LabelsBuilder<'a>

impl<'a> Unpin for LabelsBuilder<'a>

impl<'a> UnwindSafe for LabelsBuilder<'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.