pub struct ProjectGroup {
pub object: String,
pub project_id: String,
pub group_id: String,
pub group_name: String,
pub created_at: u64,
}Expand description
Details about a group’s membership in a project.
Fields§
§object: StringThe object type, which is always project.group.
project_id: StringIdentifier of the project.
group_id: StringIdentifier of the group that has access to the project.
group_name: StringDisplay name of the group.
created_at: u64Unix timestamp (in seconds) when the group was granted project access.
Trait Implementations§
Source§impl Clone for ProjectGroup
impl Clone for ProjectGroup
Source§fn clone(&self) -> ProjectGroup
fn clone(&self) -> ProjectGroup
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProjectGroup
impl Debug for ProjectGroup
Source§impl<'de> Deserialize<'de> for ProjectGroup
impl<'de> Deserialize<'de> for ProjectGroup
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ProjectGroup
impl PartialEq for ProjectGroup
Source§impl Serialize for ProjectGroup
impl Serialize for ProjectGroup
impl StructuralPartialEq for ProjectGroup
Auto Trait Implementations§
impl Freeze for ProjectGroup
impl RefUnwindSafe for ProjectGroup
impl Send for ProjectGroup
impl Sync for ProjectGroup
impl Unpin for ProjectGroup
impl UnwindSafe for ProjectGroup
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more