Use Base Debug
All checks were successful
Build and Test / minecraft-wiiu (push) Successful in 3m35s
Build and Test / splatoon (push) Successful in 4m18s
Build and Test / mario-tennis (push) Successful in 4m59s
Build and Test / friends (push) Successful in 5m14s
Build and Test / puyopuyo (push) Successful in 5m14s
Build and Test / wii-u-chat (push) Successful in 5m21s
Build and Test / splatoon-testfire (push) Successful in 5m31s
Build and Test / terraria (push) Successful in 5m33s
Build and Test / fast-racing-neo (push) Successful in 5m45s
Build and Test / wii-sports-club (push) Successful in 5m47s
Build and Test / sonic-transformed (push) Successful in 5m48s
Build and Test / super-mario-maker (push) Successful in 6m10s

This commit is contained in:
BloxerHD 2026-08-08 16:32:08 +01:00
commit 741c75cbbb
Signed by: bloxerhd018
SSH key fingerprint: SHA256:ItSfcfhpXlfkMK3uQSDYW5X3XKm0hbHWQqWcCK57px8

View file

@ -78,6 +78,7 @@ cfg_if! {
} }
} }
#[derive(Debug)]
pub struct MatchmakeSessionSearchCriteria { pub struct MatchmakeSessionSearchCriteria {
pub attribs: Vec<StringSet<u32>>, pub attribs: Vec<StringSet<u32>>,
pub game_mode: String, pub game_mode: String,
@ -399,50 +400,6 @@ pub struct MatchmakeSessionSearchCriteria {
} }
} }
#[automatically_derived] #[automatically_derived]
impl ::core::fmt::Debug for MatchmakeSessionSearchCriteria {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
let names: &'static _ = &[
"attribs",
"game_mode",
"minimum_participants",
"maximum_participants",
"matchmake_system_type",
"vacant_only",
"exclude_locked",
"exclude_non_host_pid",
"selection_method",
"vacant_participants",
"matchmake_param",
"exclude_user_password_set",
"exclude_system_password_set",
"refer_gid",
];
let values: &[&dyn ::core::fmt::Debug] = &[
&self.attribs,
&self.game_mode,
&self.minimum_participants,
&self.maximum_participants,
&self.matchmake_system_type,
&self.vacant_only,
&self.exclude_locked,
&self.exclude_non_host_pid,
&self.selection_method,
&self.vacant_participants,
&self.matchmake_param,
&self.exclude_user_password_set,
&self.exclude_system_password_set,
&&self.refer_gid,
];
::core::fmt::Formatter::debug_struct_fields_finish(
f,
"MatchmakeSessionSearchCriteria",
names,
values,
)
}
}
#[automatically_derived]
impl ::core::clone::Clone for MatchmakeSessionSearchCriteria { impl ::core::clone::Clone for MatchmakeSessionSearchCriteria {
#[inline] #[inline]
fn clone(&self) -> MatchmakeSessionSearchCriteria { fn clone(&self) -> MatchmakeSessionSearchCriteria {