[][src]Struct gitlab::types::GroupDetail

pub struct GroupDetail {
    pub id: GroupId,
    pub name: String,
    pub path: String,
    pub description: Option<String>,
    pub visibility: VisibilityLevel,
    pub lfs_enabled: bool,
    pub avatar_url: Option<String>,
    pub web_url: String,
    pub projects: Vec<Project>,
    pub shared_projects: Vec<Project>,
    pub request_access_enabled: bool,
    pub full_name: String,
    pub full_path: String,
    pub parent_id: Option<GroupId>,
    pub statistics: Option<GroupStatistics>,
}

Group information with a project listing.

Fields

id: GroupId

The ID of the group.

name: String

The name of the group.

path: String

The path to the group.

description: Option<String>

The description of the group.

visibility: VisibilityLevel

Whether the project is public, internal, or private.

lfs_enabled: bool

Whether LFS is enabled for the group.

avatar_url: Option<String>

The URL to the group avatar.

web_url: String

The URL to the group's profile page.

projects: Vec<Project>

The projects in a group.

shared_projects: Vec<Project>

Projects the group shares with other groups or users.

request_access_enabled: bool

Whether membership requests are allowed for the group.

full_name: Stringfull_path: Stringparent_id: Option<GroupId>statistics: Option<GroupStatistics>

Statistics about the group.

Trait Implementations

impl From<GroupDetail> for Group[src]

impl Clone for GroupDetail[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for GroupDetail[src]

impl Serialize for GroupDetail[src]

impl<'de> Deserialize<'de> for GroupDetail[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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.

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err