You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#[derive(Default)]structPet{name:Option<String>,// impl Default for Pet will use Default::default() for nameage:i128 = 42,// impl Default for Pet will use the literal 42 for age}
This will require special handling as such fields are not desugared to anything else in the THIR.
The text was updated successfully, but these errors were encountered:
Rust should soon support the following syntax (rust-lang/rust#132162):
This will require special handling as such fields are not desugared to anything else in the THIR.
The text was updated successfully, but these errors were encountered: