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: Option<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
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.
request_access_enabled: bool
Whether membership requests are allowed for the group.
full_name: String
full_path: String
parent_id: Option<GroupId>
statistics: Option<GroupStatistics>
Statistics about the group.
Trait Implementations
impl Debug for Group[src]
impl Debug for Groupfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for Group[src]
impl Clone for Groupfn clone(&self) -> Group[src]
fn clone(&self) -> GroupReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl From<GroupDetail> for Group[src]
impl From<GroupDetail> for Groupfn from(detail: GroupDetail) -> Self[src]
fn from(detail: GroupDetail) -> SelfPerforms the conversion.