pub struct FeaturedParticipant {
pub team_id: i64,
pub spell1id: i64,
pub spell2id: i64,
pub champion_id: i64,
pub profile_icon_id: i64,
pub summoner_name: String,
pub bot: bool,
}Fields§
§team_id: i64§spell1id: i64§spell2id: i64§champion_id: i64§profile_icon_id: i64§summoner_name: String§bot: boolTrait Implementations§
Source§impl Clone for FeaturedParticipant
impl Clone for FeaturedParticipant
Source§fn clone(&self) -> FeaturedParticipant
fn clone(&self) -> FeaturedParticipant
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 FeaturedParticipant
impl Debug for FeaturedParticipant
Source§impl Default for FeaturedParticipant
impl Default for FeaturedParticipant
Source§fn default() -> FeaturedParticipant
fn default() -> FeaturedParticipant
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FeaturedParticipant
impl<'de> Deserialize<'de> for FeaturedParticipant
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 PartialEq for FeaturedParticipant
impl PartialEq for FeaturedParticipant
Source§impl Serialize for FeaturedParticipant
impl Serialize for FeaturedParticipant
impl StructuralPartialEq for FeaturedParticipant
Auto Trait Implementations§
impl Freeze for FeaturedParticipant
impl RefUnwindSafe for FeaturedParticipant
impl Send for FeaturedParticipant
impl Sync for FeaturedParticipant
impl Unpin for FeaturedParticipant
impl UnwindSafe for FeaturedParticipant
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