Struct gitlab::types::Namespace
[−]
[src]
pub struct Namespace {
pub path: String,
pub name: String,
pub kind: NamespaceKind,
pub full_path: String,
pub members_count_with_descendants: Option<u64>,
// some fields omitted
}An entity which can own projects.
Fields
path: String
The URL of the namespace.
name: String
The name of the namespace.
kind: NamespaceKind
The kind of the namespace.
full_path: String
members_count_with_descendants: Option<u64>
Number of members in the namespace and its descendants.
Only available when talking to GitLab as a user that can admin the namespace.
Methods
impl Namespace[src]
pub fn id(&self) -> NamespaceId[src]
The ID of the namespace.
Trait Implementations
impl Debug for Namespace[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more