Lines Matching defs:or

34     let or = OwningRef::new(v);  localVariable
35 let or = or.map(|v| &v[1..3]); localVariable
92 let or = BoxRef::new(Box::new(foo)).map(|foo| { localVariable
1250 let or: OwningRef<Box<()>, ()> = OwningRef::new(Box::new(())); in new_deref() localVariable
1256 let or: OwningRef<Box<()>, ()> = Box::new(()).into(); in into() localVariable
1262 let or: BoxRef<Example> = Box::new(example()).into(); in map_offset_ref() localVariable
1263 let or: BoxRef<_, u32> = or.map(|x| &x.0); in map_offset_ref() localVariable
1266 let or: BoxRef<Example> = Box::new(example()).into(); in map_offset_ref() localVariable
1267 let or: BoxRef<_, u8> = or.map(|x| &x.2[1]); in map_offset_ref() localVariable
1273 let or: BoxRef<Example> = Box::new(example()).into(); in map_heap_ref() localVariable
1274 let or: BoxRef<_, str> = or.map(|x| &x.1[..5]); in map_heap_ref() localVariable
1280 let or: BoxRef<()> = Box::new(()).into(); in map_static_ref() localVariable
1281 let or: BoxRef<_, str> = or.map(|_| "hello"); in map_static_ref() localVariable
1287 let or: BoxRef<String> = Box::new(example().1).into(); in map_chained() localVariable
1288 let or: BoxRef<_, str> = or.map(|x| &x[1..5]); in map_chained() localVariable
1289 let or: BoxRef<_, str> = or.map(|x| &x[..2]); in map_chained() localVariable
1295 let or = BoxRef::new(Box::new(example().1)) in map_chained_inference() localVariable
1303 let or: BoxRef<String> = Box::new(example().1).into(); in as_owner() localVariable
1304 let or = or.map(|x| &x[..5]); in as_owner() localVariable
1311 let or: BoxRef<String> = Box::new(example().1).into(); in into_owner() localVariable
1312 let or = or.map(|x| &x[..5]); in into_owner() localVariable
1320 let or: BoxRef<String> = Box::new(example().1).into(); in fmt_debug() localVariable
1321 let or = or.map(|x| &x[..5]); in fmt_debug() localVariable
1666 let or: OwningRefMut<Box<()>, ()> = OwningRefMut::new(Box::new(())); in new_deref() localVariable
1672 let mut or: OwningRefMut<Box<()>, ()> = OwningRefMut::new(Box::new(())); in new_deref_mut() localVariable
1678 let mut or: OwningRefMut<Box<usize>, usize> = OwningRefMut::new(Box::new(0)); in mutate() localVariable
1686 let or: OwningRefMut<Box<()>, ()> = Box::new(()).into(); in into() localVariable
1692 let or: BoxRefMut<Example> = Box::new(example()).into(); in map_offset_ref() localVariable
1693 let or: BoxRef<_, u32> = or.map(|x| &mut x.0); in map_offset_ref() localVariable
1696 let or: BoxRefMut<Example> = Box::new(example()).into(); in map_offset_ref() localVariable
1697 let or: BoxRef<_, u8> = or.map(|x| &mut x.2[1]); in map_offset_ref() localVariable
1703 let or: BoxRefMut<Example> = Box::new(example()).into(); in map_heap_ref() localVariable
1704 let or: BoxRef<_, str> = or.map(|x| &mut x.1[..5]); in map_heap_ref() localVariable
1710 let or: BoxRefMut<()> = Box::new(()).into(); in map_static_ref() localVariable
1711 let or: BoxRef<_, str> = or.map(|_| "hello"); in map_static_ref() localVariable
1717 let or: BoxRefMut<Example> = Box::new(example()).into(); in map_mut_offset_ref() localVariable
1718 let or: BoxRefMut<_, u32> = or.map_mut(|x| &mut x.0); in map_mut_offset_ref() localVariable
1721 let or: BoxRefMut<Example> = Box::new(example()).into(); in map_mut_offset_ref() localVariable
1722 let or: BoxRefMut<_, u8> = or.map_mut(|x| &mut x.2[1]); in map_mut_offset_ref() localVariable
1728 let or: BoxRefMut<Example> = Box::new(example()).into(); in map_mut_heap_ref() localVariable
1729 let or: BoxRefMut<_, str> = or.map_mut(|x| &mut x.1[..5]); in map_mut_heap_ref() localVariable
1739 let or: BoxRefMut<()> = Box::new(()).into(); in map_mut_static_ref() localVariable
1740 let or: BoxRefMut<_, [u8]> = or.map_mut(move |_| mut_s); in map_mut_static_ref() localVariable
1746 let or: BoxRefMut<String> = Box::new(example().1).into(); in map_mut_chained() localVariable
1747 let or: BoxRefMut<_, str> = or.map_mut(|x| &mut x[1..5]); in map_mut_chained() localVariable
1748 let or: BoxRefMut<_, str> = or.map_mut(|x| &mut x[..2]); in map_mut_chained() localVariable
1754 let or = BoxRefMut::new(Box::new(example().1)) in map_chained_inference() localVariable
1762 let or: BoxRefMut<String> = Box::new(example().1).into(); in try_map_mut() localVariable
1763 let or: Result<BoxRefMut<_, str>, ()> = or.try_map_mut(|x| Ok(&mut x[1..5])); in try_map_mut() localVariable
1766 let or: BoxRefMut<String> = Box::new(example().1).into(); in try_map_mut() localVariable
1767 let or: Result<BoxRefMut<_, str>, ()> = or.try_map_mut(|_| Err(())); in try_map_mut() localVariable
1773 let or: BoxRefMut<String> = Box::new(example().1).into(); in as_owner() localVariable
1774 let or = or.map_mut(|x| &mut x[..5]); in as_owner() localVariable
1781 let or: BoxRefMut<String> = Box::new(example().1).into(); in into_owner() localVariable
1782 let or = or.map_mut(|x| &mut x[..5]); in into_owner() localVariable
1790 let or: BoxRefMut<String> = Box::new(example().1).into(); in fmt_debug() localVariable
1791 let or = or.map_mut(|x| &mut x[..5]); in fmt_debug() localVariable
1987 let or: BoxRefMut<()> = Box::new(()).into(); in into_owning_ref() localVariable
1988 let or: BoxRef<()> = or.into(); in into_owning_ref() localVariable