Struct gitlab::types::Group [−][src]
pub struct Group {}Show fields
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<'de> Deserialize<'de> for Group
[src]
impl<'de> Deserialize<'de> for Group
[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
impl From<GroupDetail> for Group
[src]
impl From<GroupDetail> for Group
[src]fn from(detail: GroupDetail) -> Self
[src]
fn from(detail: GroupDetail) -> Self
[src]Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for Group
impl Send for Group
impl Sync for Group
impl Unpin for Group
impl UnwindSafe for Group
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,