pub struct GroupResponse {
pub group_id: i64,
pub group_key: String,
pub group_path: Option<String>,
pub parent_group_path: Option<String>,
pub name: String,
pub visibility: Visibility,
pub kind: GroupKind,
pub current_role: Option<MembershipRole>,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
}Fields§
§group_id: i64§group_key: String§group_path: Option<String>§parent_group_path: Option<String>§name: String§visibility: Visibility§kind: GroupKind§current_role: Option<MembershipRole>§created_at: DateTime<Utc>§updated_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for GroupResponse
impl Clone for GroupResponse
Source§fn clone(&self) -> GroupResponse
fn clone(&self) -> GroupResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GroupResponse
impl Debug for GroupResponse
Source§impl<'de> Deserialize<'de> for GroupResponse
impl<'de> Deserialize<'de> for GroupResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<GroupResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GroupResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for GroupResponse
impl Serialize for GroupResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for GroupResponse
impl RefUnwindSafe for GroupResponse
impl Send for GroupResponse
impl Sync for GroupResponse
impl Unpin for GroupResponse
impl UnsafeUnpin for GroupResponse
impl UnwindSafe for GroupResponse
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