impl Drop for Tracer { fn drop(&mut self) { println!("Dropping {}", self.0); } }
struct Test { a: Tracer, b: Tracer, }
fn main() { let mut t = Test { a: Tracer::new("A"), b: Tracer::new("B"), };
mem::replace(&mut t.a, Tracer::new("X"));
println!("Midpoint"); }
✅ОТВЕТ: ```Creating A Creating B Creating X Dropping A Midpoint Dropping B Dropping X ```
1. Создание: Tracer::new("A") → Creating A 2. mem::replace(...): Creating XDropping A 3. println!("Midpoint"): Midpoint 4. Drop поля: B, затем X Этот код демонстрирует поведение Drop при замене полей структуры в Rust через std::mem::replace.
impl Drop for Tracer { fn drop(&mut self) { println!("Dropping {}", self.0); } }
struct Test { a: Tracer, b: Tracer, }
fn main() { let mut t = Test { a: Tracer::new("A"), b: Tracer::new("B"), };
mem::replace(&mut t.a, Tracer::new("X"));
println!("Midpoint"); }
✅ОТВЕТ: ```Creating A Creating B Creating X Dropping A Midpoint Dropping B Dropping X ```
1. Создание: Tracer::new("A") → Creating A 2. mem::replace(...): Creating XDropping A 3. println!("Midpoint"): Midpoint 4. Drop поля: B, затем X Этот код демонстрирует поведение Drop при замене полей структуры в Rust через std::mem::replace.
The SSE was the first modern stock exchange to open in China, with trading commencing in 1990. It has now grown to become the largest stock exchange in Asia and the third-largest in the world by market capitalization, which stood at RMB 50.6 trillion (US$7.8 trillion) as of September 2021. Stocks (both A-shares and B-shares), bonds, funds, and derivatives are traded on the exchange. The SEE has two trading boards, the Main Board and the Science and Technology Innovation Board, the latter more commonly known as the STAR Market. The Main Board mainly hosts large, well-established Chinese companies and lists both A-shares and B-shares.