pub struct GroupResponse {
pub group_id: i64,
pub group_key: String,
pub parent_group_key: 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§parent_group_key: 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 ComposeSchema for GroupResponse
impl ComposeSchema for GroupResponse
Source§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<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 Serialize for GroupResponse
impl Serialize for GroupResponse
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