pub struct GroupSummaryResponse {
pub display_name: String,
pub id: String,
}Expand description
Group resource (identity-only).
JSON schema
{
"title": "GroupSummaryResponse",
"description": "Group resource (identity-only).",
"type": "object",
"required": [
"display_name",
"id"
],
"properties": {
"display_name": {
"title": "Display Name",
"type": "string"
},
"id": {
"title": "Id",
"type": "string"
}
}
}Fields§
§display_name: String§id: StringTrait Implementations§
Source§impl Clone for GroupSummaryResponse
impl Clone for GroupSummaryResponse
Source§fn clone(&self) -> GroupSummaryResponse
fn clone(&self) -> GroupSummaryResponse
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 GroupSummaryResponse
impl Debug for GroupSummaryResponse
Source§impl<'de> Deserialize<'de> for GroupSummaryResponse
impl<'de> Deserialize<'de> for GroupSummaryResponse
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 From<&GroupSummaryResponse> for GroupSummaryResponse
impl From<&GroupSummaryResponse> for GroupSummaryResponse
Source§fn from(value: &GroupSummaryResponse) -> Self
fn from(value: &GroupSummaryResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GroupSummaryResponse
impl RefUnwindSafe for GroupSummaryResponse
impl Send for GroupSummaryResponse
impl Sync for GroupSummaryResponse
impl Unpin for GroupSummaryResponse
impl UnsafeUnpin for GroupSummaryResponse
impl UnwindSafe for GroupSummaryResponse
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