pub struct GroupDetails {
pub name: Option<String>,
pub group_id: Option<String>,
}
Expand description
GroupDetails : Details about a group.
Fields§
§name: Option<String>
The name of the group.
group_id: Option<String>
The ID of the group, if available, which uniquely identifies the group across all Atlassian products. For example, 952d12c3-5b5b-4d04-bb32-44d383afc4b2.
Implementations§
Source§impl GroupDetails
impl GroupDetails
Sourcepub fn new() -> GroupDetails
pub fn new() -> GroupDetails
Details about a group.
Trait Implementations§
Source§impl Clone for GroupDetails
impl Clone for GroupDetails
Source§fn clone(&self) -> GroupDetails
fn clone(&self) -> GroupDetails
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 GroupDetails
impl Debug for GroupDetails
Source§impl Default for GroupDetails
impl Default for GroupDetails
Source§fn default() -> GroupDetails
fn default() -> GroupDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GroupDetails
impl<'de> Deserialize<'de> for GroupDetails
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 GroupDetails
impl PartialEq for GroupDetails
Source§impl Serialize for GroupDetails
impl Serialize for GroupDetails
impl StructuralPartialEq for GroupDetails
Auto Trait Implementations§
impl Freeze for GroupDetails
impl RefUnwindSafe for GroupDetails
impl Send for GroupDetails
impl Sync for GroupDetails
impl Unpin for GroupDetails
impl UnwindSafe for GroupDetails
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