pub struct PartyInvitedEventData {
pub party: PartyState,
}Expand description
PartyInvitedEventData
JSON schema
{
"title": "PartyInvitedEventData",
"type": "object",
"required": [
"party"
],
"properties": {
"party": {
"$ref": "#/definitions/partyState"
}
}
}Fields§
§party: PartyStateImplementations§
Source§impl PartyInvitedEventData
impl PartyInvitedEventData
pub fn builder() -> PartyInvitedEventData
Trait Implementations§
Source§impl Clone for PartyInvitedEventData
impl Clone for PartyInvitedEventData
Source§fn clone(&self) -> PartyInvitedEventData
fn clone(&self) -> PartyInvitedEventData
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 PartyInvitedEventData
impl Debug for PartyInvitedEventData
Source§impl<'de> Deserialize<'de> for PartyInvitedEventData
impl<'de> Deserialize<'de> for PartyInvitedEventData
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<PartyInvitedEventData> for PartyInvitedEventData
impl From<PartyInvitedEventData> for PartyInvitedEventData
Source§fn from(value: PartyInvitedEventData) -> Self
fn from(value: PartyInvitedEventData) -> Self
Converts to this type from the input type.
Source§impl Serialize for PartyInvitedEventData
impl Serialize for PartyInvitedEventData
Source§impl TryFrom<PartyInvitedEventData> for PartyInvitedEventData
impl TryFrom<PartyInvitedEventData> for PartyInvitedEventData
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: PartyInvitedEventData) -> Result<Self, ConversionError>
fn try_from(value: PartyInvitedEventData) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for PartyInvitedEventData
impl RefUnwindSafe for PartyInvitedEventData
impl Send for PartyInvitedEventData
impl Sync for PartyInvitedEventData
impl Unpin for PartyInvitedEventData
impl UnsafeUnpin for PartyInvitedEventData
impl UnwindSafe for PartyInvitedEventData
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