Lines Matching refs:bob
62 bob: usize,
67 assert_eq!(opt.bob, 5);
71 assert_eq!(opt.bob, 5);
75 assert_eq!(opt.bob, 10);
79 assert_eq!(opt.bob, 10);
134 bob: u8,
138 Opt { alice: 0, bob: 0 },
142 Opt { alice: 1, bob: 0 },
146 Opt { alice: 2, bob: 0 },
150 Opt { alice: 2, bob: 2 },
154 Opt { alice: 3, bob: 1 },
155 Opt::try_parse_from(["test", "-aaa", "--bob"]).unwrap()
168 bob: u8,
174 bob: 0
181 bob: 0
188 bob: 0
195 bob: 1
202 bob: 1
204 Opt::try_parse_from(["test", "--alice", "--bob"]).unwrap()
209 bob: 4