Lines Matching refs:BOUND
298 let mut ser_bound = Attr::none(cx, BOUND); in from_ast()
299 let mut de_bound = Attr::none(cx, BOUND); in from_ast()
429 Meta(NameValue(m)) if m.path == BOUND => { in from_ast()
430 if let Ok(where_predicates) = parse_lit_into_where(cx, BOUND, BOUND, &m.lit) { in from_ast()
437 Meta(List(m)) if m.path == BOUND => { in from_ast()
867 let mut ser_bound = Attr::none(cx, BOUND); in from_ast()
868 let mut de_bound = Attr::none(cx, BOUND); in from_ast()
961 Meta(NameValue(m)) if m.path == BOUND => { in from_ast()
962 if let Ok(where_predicates) = parse_lit_into_where(cx, BOUND, BOUND, &m.lit) { in from_ast()
969 Meta(List(m)) if m.path == BOUND => { in from_ast()
1160 let mut ser_bound = Attr::none(cx, BOUND); in from_ast()
1161 let mut de_bound = Attr::none(cx, BOUND); in from_ast()
1278 Meta(NameValue(m)) if m.path == BOUND => { in from_ast()
1279 if let Ok(where_predicates) = parse_lit_into_where(cx, BOUND, BOUND, &m.lit) { in from_ast()
1286 Meta(List(m)) if m.path == BOUND => { in from_ast()
1563 let (ser, de) = get_ser_and_de(cx, BOUND, items, parse_lit_into_where)?; in get_where_predicates()