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