Struct gitlab::types::Group [] [src]

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

Group information.

Fields

The ID of the group.

The name of the group.

The path to the group.

The description of the group.

Whether the project is public, internal, or private.

Whether LFS is enabled for the group.

The URL to the group avatar.

The URL to the group's profile page.

Whether membership requests are allowed for the group.

Statistics about the group.

Trait Implementations

impl Debug for Group
[src]

Formats the value using the given formatter.

impl Clone for Group
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<GroupDetail> for Group
[src]

Performs the conversion.