pub struct SlotRankingView {
pub slot_index: u32,
pub items: Vec<SlotItemEntryView>,
}Expand description
Per-slot ranked candidate items from the tournament.
Fields§
§slot_index: u32§items: Vec<SlotItemEntryView>Trait Implementations§
Source§impl Clone for SlotRankingView
impl Clone for SlotRankingView
Source§fn clone(&self) -> SlotRankingView
fn clone(&self) -> SlotRankingView
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 SlotRankingView
impl Debug for SlotRankingView
Source§impl Serialize for SlotRankingView
impl Serialize for SlotRankingView
Source§impl Tsify for SlotRankingView
impl Tsify for SlotRankingView
const DECL: &'static str = "/**\n * Per-slot ranked candidate items from the tournament.\n */\nexport interface SlotRankingView {\n slot_index: number;\n items: SlotItemEntryView[];\n}"
const SERIALIZATION_CONFIG: SerializationConfig
type JsType = JsType
fn into_js(&self) -> Result<Self::JsType, Error>where
Self: Serialize,
Auto Trait Implementations§
impl Freeze for SlotRankingView
impl RefUnwindSafe for SlotRankingView
impl Send for SlotRankingView
impl Sync for SlotRankingView
impl Unpin for SlotRankingView
impl UnsafeUnpin for SlotRankingView
impl UnwindSafe for SlotRankingView
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