pub struct GroupInfoDtoGroupUpdate {
pub data: Option<GroupInfoDto>,
pub group_id: Option<Uuid>,
pub type_: Option<GroupUpdateType>,
}
Expand description
Class GroupUpdate.
JSON schema
{
"description": "Class GroupUpdate.",
"type": "object",
"properties": {
"Data": {
"description": "Gets the update data.",
"allOf": [
{
"$ref": "#/components/schemas/GroupInfoDto"
}
]
},
"GroupId": {
"description": "Gets the group identifier.",
"readOnly": true,
"type": "string",
"format": "uuid"
},
"Type": {
"description": "Gets the update type.",
"allOf": [
{
"$ref": "#/components/schemas/GroupUpdateType"
}
]
}
},
"additionalProperties": false
}
Fields§
§data: Option<GroupInfoDto>
Gets the update data.
group_id: Option<Uuid>
Gets the group identifier.
type_: Option<GroupUpdateType>
Gets the update type.
Implementations§
Source§impl GroupInfoDtoGroupUpdate
impl GroupInfoDtoGroupUpdate
pub fn builder() -> GroupInfoDtoGroupUpdate
Trait Implementations§
Source§impl Clone for GroupInfoDtoGroupUpdate
impl Clone for GroupInfoDtoGroupUpdate
Source§fn clone(&self) -> GroupInfoDtoGroupUpdate
fn clone(&self) -> GroupInfoDtoGroupUpdate
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 GroupInfoDtoGroupUpdate
impl Debug for GroupInfoDtoGroupUpdate
Source§impl<'de> Deserialize<'de> for GroupInfoDtoGroupUpdate
impl<'de> Deserialize<'de> for GroupInfoDtoGroupUpdate
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<&GroupInfoDtoGroupUpdate> for GroupInfoDtoGroupUpdate
impl From<&GroupInfoDtoGroupUpdate> for GroupInfoDtoGroupUpdate
Source§fn from(value: &GroupInfoDtoGroupUpdate) -> Self
fn from(value: &GroupInfoDtoGroupUpdate) -> Self
Converts to this type from the input type.
Source§impl From<GroupInfoDtoGroupUpdate> for GroupInfoDtoGroupUpdate
impl From<GroupInfoDtoGroupUpdate> for GroupInfoDtoGroupUpdate
Source§fn from(value: GroupInfoDtoGroupUpdate) -> Self
fn from(value: GroupInfoDtoGroupUpdate) -> Self
Converts to this type from the input type.
Source§impl Serialize for GroupInfoDtoGroupUpdate
impl Serialize for GroupInfoDtoGroupUpdate
Source§impl TryFrom<GroupInfoDtoGroupUpdate> for GroupInfoDtoGroupUpdate
impl TryFrom<GroupInfoDtoGroupUpdate> for GroupInfoDtoGroupUpdate
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: GroupInfoDtoGroupUpdate) -> Result<Self, ConversionError>
fn try_from(value: GroupInfoDtoGroupUpdate) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for GroupInfoDtoGroupUpdate
impl RefUnwindSafe for GroupInfoDtoGroupUpdate
impl Send for GroupInfoDtoGroupUpdate
impl Sync for GroupInfoDtoGroupUpdate
impl Unpin for GroupInfoDtoGroupUpdate
impl UnwindSafe for GroupInfoDtoGroupUpdate
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