Searched defs:ref_option (Results 1 – 1 of 1) sorted by relevance
400 let ref_option = &Some(&42); in test_option_as_deref() localVariable403 let ref_option = &Some(String::from("a result")); in test_option_as_deref() localVariable406 let ref_option = &Some(vec![1, 2, 3, 4, 5]); in test_option_as_deref() localVariable410 let ref_option: &Option<&i32> = &None; in test_option_as_deref() localVariable418 let ref_option = &mut Some(&mut val); in test_option_as_deref_mut() localVariable421 let ref_option = &mut Some(String::from("a result")); in test_option_as_deref_mut() localVariable424 let ref_option = &mut Some(vec![1, 2, 3, 4, 5]); in test_option_as_deref_mut() localVariable428 let ref_option: &mut Option<&mut i32> = &mut None; in test_option_as_deref_mut() localVariable