, fn(&u8) -> u8>;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:344:3
[INFO] [stdout] |
[INFO] [stdout] 344 | / fn iter_indices(&self) -> Self::Iter {
[INFO] [stdout] 345 | | self.iter_elements().enumerate()
[INFO] [stdout] 346 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:348:3
[INFO] [stdout] |
[INFO] [stdout] 348 | / fn iter_elements(&self) -> Self::IterElem {
[INFO] [stdout] 349 | | self.iter().map(star)
[INFO] [stdout] 350 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:352:3
[INFO] [stdout] |
[INFO] [stdout] 352 | / fn position(&self, predicate: P) -> Option
[INFO] [stdout] 353 | | where
[INFO] [stdout] 354 | | P: Fn(Self::Item) -> bool,
[INFO] [stdout] 355 | | {
[INFO] [stdout] 356 | | self.iter().position(|b| predicate(*b))
[INFO] [stdout] 357 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:359:3
[INFO] [stdout] |
[INFO] [stdout] 359 | / fn slice_index(&self, count: usize) -> Option {
[INFO] [stdout] 360 | | if self.len() >= count {
[INFO] [stdout] 361 | | Some(count)
[INFO] [stdout] 362 | | } else {
[INFO] [stdout] 363 | | None
[INFO] [stdout] 364 | | }
[INFO] [stdout] 365 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:380:1
[INFO] [stdout] |
[INFO] [stdout] 380 | / impl<'a> InputIter for &'a str {
[INFO] [stdout] 381 | | type Item = char;
[INFO] [stdout] 382 | | type Iter = CharIndices<'a>;
[INFO] [stdout] 383 | | type IterElem = Chars<'a>;
[INFO] [stdout] ... |
[INFO] [stdout] 416 | | }
[INFO] [stdout] 417 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:381:3
[INFO] [stdout] |
[INFO] [stdout] 381 | type Item = char;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:382:3
[INFO] [stdout] |
[INFO] [stdout] 382 | type Iter = CharIndices<'a>;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:383:3
[INFO] [stdout] |
[INFO] [stdout] 383 | type IterElem = Chars<'a>;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:385:3
[INFO] [stdout] |
[INFO] [stdout] 385 | / fn iter_indices(&self) -> Self::Iter {
[INFO] [stdout] 386 | | self.char_indices()
[INFO] [stdout] 387 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:389:3
[INFO] [stdout] |
[INFO] [stdout] 389 | / fn iter_elements(&self) -> Self::IterElem {
[INFO] [stdout] 390 | | self.chars()
[INFO] [stdout] 391 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:392:3
[INFO] [stdout] |
[INFO] [stdout] 392 | / fn position(&self, predicate: P) -> Option
[INFO] [stdout] 393 | | where
[INFO] [stdout] 394 | | P: Fn(Self::Item) -> bool,
[INFO] [stdout] 395 | | {
[INFO] [stdout] ... |
[INFO] [stdout] 401 | | None
[INFO] [stdout] 402 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:404:3
[INFO] [stdout] |
[INFO] [stdout] 404 | / fn slice_index(&self, count: usize) -> Option {
[INFO] [stdout] 405 | | let mut cnt = 0;
[INFO] [stdout] 406 | | for (index, _) in self.char_indices() {
[INFO] [stdout] 407 | | if cnt == count {
[INFO] [stdout] ... |
[INFO] [stdout] 415 | | None
[INFO] [stdout] 416 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:368:1
[INFO] [stdout] |
[INFO] [stdout] 368 | / impl<'a> InputTake for &'a [u8] {
[INFO] [stdout] 369 | | #[inline]
[INFO] [stdout] 370 | | fn take(&self, count: usize) -> Self {
[INFO] [stdout] 371 | | &self[0..count]
[INFO] [stdout] ... |
[INFO] [stdout] 377 | | }
[INFO] [stdout] 378 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:370:3
[INFO] [stdout] |
[INFO] [stdout] 370 | / fn take(&self, count: usize) -> Self {
[INFO] [stdout] 371 | | &self[0..count]
[INFO] [stdout] 372 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:374:3
[INFO] [stdout] |
[INFO] [stdout] 374 | / fn take_split(&self, count: usize) -> (Self, Self) {
[INFO] [stdout] 375 | | let (prefix, suffix) = self.split_at(count);
[INFO] [stdout] 376 | | (suffix, prefix)
[INFO] [stdout] 377 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:419:1
[INFO] [stdout] |
[INFO] [stdout] 419 | / impl<'a> InputTake for &'a str {
[INFO] [stdout] 420 | | #[inline]
[INFO] [stdout] 421 | | fn take(&self, count: usize) -> Self {
[INFO] [stdout] 422 | | &self[..count]
[INFO] [stdout] ... |
[INFO] [stdout] 429 | | }
[INFO] [stdout] 430 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:421:3
[INFO] [stdout] |
[INFO] [stdout] 421 | / fn take(&self, count: usize) -> Self {
[INFO] [stdout] 422 | | &self[..count]
[INFO] [stdout] 423 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:427:3
[INFO] [stdout] |
[INFO] [stdout] 427 | / fn take_split(&self, count: usize) -> (Self, Self) {
[INFO] [stdout] 428 | | (&self[count..], &self[..count])
[INFO] [stdout] 429 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:489:1
[INFO] [stdout] |
[INFO] [stdout] 489 | / impl InputTakeAtPosition for T {
[INFO] [stdout] 490 | | type Item = ::Item;
[INFO] [stdout] 491 | |
[INFO] [stdout] 492 | | fn split_at_position>(&self, predicate: P) -> IResult
[INFO] [stdout] ... |
[INFO] [stdout] 531 | | }
[INFO] [stdout] 532 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:490:3
[INFO] [stdout] |
[INFO] [stdout] 490 | type Item = ::Item;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:492:3
[INFO] [stdout] |
[INFO] [stdout] 492 | / fn split_at_position>(&self, predicate: P) -> IResult
[INFO] [stdout] 493 | | where
[INFO] [stdout] 494 | | P: Fn(Self::Item) -> bool,
[INFO] [stdout] 495 | | {
[INFO] [stdout] ... |
[INFO] [stdout] 499 | | }
[INFO] [stdout] 500 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:502:3
[INFO] [stdout] |
[INFO] [stdout] 502 | / fn split_at_position1>(&self, predicate: P, e: ErrorKind) -> IResult
[INFO] [stdout] 503 | | where
[INFO] [stdout] 504 | | P: Fn(Self::Item) -> bool,
[INFO] [stdout] 505 | | {
[INFO] [stdout] ... |
[INFO] [stdout] 510 | | }
[INFO] [stdout] 511 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:513:3
[INFO] [stdout] |
[INFO] [stdout] 513 | / fn split_at_position_complete>(&self, predicate: P) -> IResult
[INFO] [stdout] 514 | | where P: Fn(Self::Item) -> bool {
[INFO] [stdout] 515 | | match self.split_at_position(predicate) {
[INFO] [stdout] 516 | | Err(Err::Incomplete(_)) => Ok(self.take_split(self.input_len())),
[INFO] [stdout] 517 | | res => res,
[INFO] [stdout] 518 | | }
[INFO] [stdout] 519 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:521:3
[INFO] [stdout] |
[INFO] [stdout] 521 | / fn split_at_position1_complete>(&self, predicate: P, e: ErrorKind) -> IResult
[INFO] [stdout] 522 | | where P: Fn(Self::Item) -> bool {
[INFO] [stdout] 523 | | match self.split_at_position1(predicate, e) {
[INFO] [stdout] 524 | | Err(Err::Incomplete(_)) => if self.input_len() == 0 {
[INFO] [stdout] ... |
[INFO] [stdout] 530 | | }
[INFO] [stdout] 531 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:534:1
[INFO] [stdout] |
[INFO] [stdout] 534 | / impl<'a> InputTakeAtPosition for &'a [u8] {
[INFO] [stdout] 535 | | type Item = u8;
[INFO] [stdout] 536 | |
[INFO] [stdout] 537 | | fn split_at_position>(&self, predicate: P) -> IResult
[INFO] [stdout] ... |
[INFO] [stdout] 579 | | }
[INFO] [stdout] 580 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:535:3
[INFO] [stdout] |
[INFO] [stdout] 535 | type Item = u8;
[INFO] [stdout] | ^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:537:3
[INFO] [stdout] |
[INFO] [stdout] 537 | / fn split_at_position>(&self, predicate: P) -> IResult
[INFO] [stdout] 538 | | where
[INFO] [stdout] 539 | | P: Fn(Self::Item) -> bool,
[INFO] [stdout] 540 | | {
[INFO] [stdout] ... |
[INFO] [stdout] 544 | | }
[INFO] [stdout] 545 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:547:3
[INFO] [stdout] |
[INFO] [stdout] 547 | / fn split_at_position1>(&self, predicate: P, e: ErrorKind) -> IResult
[INFO] [stdout] 548 | | where
[INFO] [stdout] 549 | | P: Fn(Self::Item) -> bool,
[INFO] [stdout] 550 | | {
[INFO] [stdout] ... |
[INFO] [stdout] 555 | | }
[INFO] [stdout] 556 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:558:3
[INFO] [stdout] |
[INFO] [stdout] 558 | / fn split_at_position_complete>(&self, predicate: P) -> IResult
[INFO] [stdout] 559 | | where P: Fn(Self::Item) -> bool {
[INFO] [stdout] 560 | | match (0..self.len()).find(|b| predicate(self[*b])) {
[INFO] [stdout] 561 | | Some(i) => Ok((&self[i..], &self[..i])),
[INFO] [stdout] 562 | | None => Ok(self.take_split(self.input_len())),
[INFO] [stdout] 563 | | }
[INFO] [stdout] 564 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:566:3
[INFO] [stdout] |
[INFO] [stdout] 566 | / fn split_at_position1_complete>(&self, predicate: P, e: ErrorKind) -> IResult
[INFO] [stdout] 567 | | where P: Fn(Self::Item) -> bool {
[INFO] [stdout] 568 | | match (0..self.len()).find(|b| predicate(self[*b])) {
[INFO] [stdout] 569 | | Some(0) => Err(Err::Error(E::from_error_kind(self, e))),
[INFO] [stdout] ... |
[INFO] [stdout] 578 | | }
[INFO] [stdout] 579 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:582:1
[INFO] [stdout] |
[INFO] [stdout] 582 | / impl<'a> InputTakeAtPosition for &'a str {
[INFO] [stdout] 583 | | type Item = char;
[INFO] [stdout] 584 | |
[INFO] [stdout] 585 | | fn split_at_position>(&self, predicate: P) -> IResult
[INFO] [stdout] ... |
[INFO] [stdout] 627 | | }
[INFO] [stdout] 628 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:583:3
[INFO] [stdout] |
[INFO] [stdout] 583 | type Item = char;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:585:3
[INFO] [stdout] |
[INFO] [stdout] 585 | / fn split_at_position>(&self, predicate: P) -> IResult
[INFO] [stdout] 586 | | where
[INFO] [stdout] 587 | | P: Fn(Self::Item) -> bool,
[INFO] [stdout] 588 | | {
[INFO] [stdout] ... |
[INFO] [stdout] 592 | | }
[INFO] [stdout] 593 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:595:3
[INFO] [stdout] |
[INFO] [stdout] 595 | / fn split_at_position1>(&self, predicate: P, e: ErrorKind) -> IResult
[INFO] [stdout] 596 | | where
[INFO] [stdout] 597 | | P: Fn(Self::Item) -> bool,
[INFO] [stdout] 598 | | {
[INFO] [stdout] ... |
[INFO] [stdout] 603 | | }
[INFO] [stdout] 604 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:606:3
[INFO] [stdout] |
[INFO] [stdout] 606 | / fn split_at_position_complete>(&self, predicate: P) -> IResult
[INFO] [stdout] 607 | | where P: Fn(Self::Item) -> bool {
[INFO] [stdout] 608 | | match self.find(predicate) {
[INFO] [stdout] 609 | | Some(i) => Ok((&self[i..], &self[..i])),
[INFO] [stdout] 610 | | None => Ok(self.take_split(self.input_len()))
[INFO] [stdout] 611 | | }
[INFO] [stdout] 612 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:614:3
[INFO] [stdout] |
[INFO] [stdout] 614 | / fn split_at_position1_complete>(&self, predicate: P, e: ErrorKind) -> IResult
[INFO] [stdout] 615 | | where P: Fn(Self::Item) -> bool {
[INFO] [stdout] 616 | | match self.find(predicate) {
[INFO] [stdout] 617 | | Some(0) => Err(Err::Error(E::from_error_kind(self, e))),
[INFO] [stdout] ... |
[INFO] [stdout] 626 | | }
[INFO] [stdout] 627 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:656:1
[INFO] [stdout] |
[INFO] [stdout] 656 | / impl<'a, 'b> Compare<&'b [u8]> for &'a [u8] {
[INFO] [stdout] 657 | | #[inline(always)]
[INFO] [stdout] 658 | | fn compare(&self, t: &'b [u8]) -> CompareResult {
[INFO] [stdout] 659 | | let pos = self.iter().zip(t.iter()).position(|(a, b)| a != b);
[INFO] [stdout] ... |
[INFO] [stdout] 708 | | }
[INFO] [stdout] 709 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:658:3
[INFO] [stdout] |
[INFO] [stdout] 658 | / fn compare(&self, t: &'b [u8]) -> CompareResult {
[INFO] [stdout] 659 | | let pos = self.iter().zip(t.iter()).position(|(a, b)| a != b);
[INFO] [stdout] 660 | |
[INFO] [stdout] 661 | | match pos {
[INFO] [stdout] ... |
[INFO] [stdout] 686 | | */
[INFO] [stdout] 687 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:690:3
[INFO] [stdout] |
[INFO] [stdout] 690 | / fn compare_no_case(&self, t: &'b [u8]) -> CompareResult {
[INFO] [stdout] 691 | | let len = self.len();
[INFO] [stdout] 692 | | let blen = t.len();
[INFO] [stdout] 693 | | let m = if len < blen { len } else { blen };
[INFO] [stdout] ... |
[INFO] [stdout] 707 | | }
[INFO] [stdout] 708 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:711:1
[INFO] [stdout] |
[INFO] [stdout] 711 | / impl<'a, 'b> Compare<&'b str> for &'a [u8] {
[INFO] [stdout] 712 | | #[inline(always)]
[INFO] [stdout] 713 | | fn compare(&self, t: &'b str) -> CompareResult {
[INFO] [stdout] 714 | | self.compare(AsBytes::as_bytes(t))
[INFO] [stdout] ... |
[INFO] [stdout] 719 | | }
[INFO] [stdout] 720 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:713:3
[INFO] [stdout] |
[INFO] [stdout] 713 | / fn compare(&self, t: &'b str) -> CompareResult {
[INFO] [stdout] 714 | | self.compare(AsBytes::as_bytes(t))
[INFO] [stdout] 715 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:717:3
[INFO] [stdout] |
[INFO] [stdout] 717 | / fn compare_no_case(&self, t: &'b str) -> CompareResult {
[INFO] [stdout] 718 | | self.compare_no_case(AsBytes::as_bytes(t))
[INFO] [stdout] 719 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:722:1
[INFO] [stdout] |
[INFO] [stdout] 722 | / impl<'a, 'b> Compare<&'b str> for &'a str {
[INFO] [stdout] 723 | | #[inline(always)]
[INFO] [stdout] 724 | | fn compare(&self, t: &'b str) -> CompareResult {
[INFO] [stdout] 725 | | let pos = self.chars().zip(t.chars()).position(|(a, b)| a != b);
[INFO] [stdout] ... |
[INFO] [stdout] 757 | | }
[INFO] [stdout] 758 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:724:3
[INFO] [stdout] |
[INFO] [stdout] 724 | / fn compare(&self, t: &'b str) -> CompareResult {
[INFO] [stdout] 725 | | let pos = self.chars().zip(t.chars()).position(|(a, b)| a != b);
[INFO] [stdout] 726 | |
[INFO] [stdout] 727 | | match pos {
[INFO] [stdout] ... |
[INFO] [stdout] 736 | | }
[INFO] [stdout] 737 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:741:3
[INFO] [stdout] |
[INFO] [stdout] 741 | / fn compare_no_case(&self, t: &'b str) -> CompareResult {
[INFO] [stdout] 742 | | let pos = self
[INFO] [stdout] 743 | | .chars()
[INFO] [stdout] 744 | | .zip(t.chars())
[INFO] [stdout] ... |
[INFO] [stdout] 756 | | }
[INFO] [stdout] 757 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:953:7
[INFO] [stdout] |
[INFO] [stdout] 953 | / impl<'a> Compare<[u8; $N]> for &'a [u8] {
[INFO] [stdout] 954 | | #[inline(always)]
[INFO] [stdout] 955 | | fn compare(&self, t: [u8; $N]) -> CompareResult {
[INFO] [stdout] 956 | | self.compare(&t[..])
[INFO] [stdout] ... |
[INFO] [stdout] 962 | | }
[INFO] [stdout] 963 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 992 | / array_impls! {
[INFO] [stdout] 993 | | 0 1 2 3 4 5 6 7 8 9
[INFO] [stdout] 994 | | 10 11 12 13 14 15 16 17 18 19
[INFO] [stdout] 995 | | 20 21 22 23 24 25 26 27 28 29
[INFO] [stdout] 996 | | 30 31 32
[INFO] [stdout] 997 | | }
[INFO] [stdout] | |_- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:955:9
[INFO] [stdout] |
[INFO] [stdout] 955 | / fn compare(&self, t: [u8; $N]) -> CompareResult {
[INFO] [stdout] 956 | | self.compare(&t[..])
[INFO] [stdout] 957 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 992 | / array_impls! {
[INFO] [stdout] 993 | | 0 1 2 3 4 5 6 7 8 9
[INFO] [stdout] 994 | | 10 11 12 13 14 15 16 17 18 19
[INFO] [stdout] 995 | | 20 21 22 23 24 25 26 27 28 29
[INFO] [stdout] 996 | | 30 31 32
[INFO] [stdout] 997 | | }
[INFO] [stdout] | |_- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:960:9
[INFO] [stdout] |
[INFO] [stdout] 960 | / fn compare_no_case(&self, t: [u8;$N]) -> CompareResult {
[INFO] [stdout] 961 | | self.compare_no_case(&t[..])
[INFO] [stdout] 962 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 992 | / array_impls! {
[INFO] [stdout] 993 | | 0 1 2 3 4 5 6 7 8 9
[INFO] [stdout] 994 | | 10 11 12 13 14 15 16 17 18 19
[INFO] [stdout] 995 | | 20 21 22 23 24 25 26 27 28 29
[INFO] [stdout] 996 | | 30 31 32
[INFO] [stdout] 997 | | }
[INFO] [stdout] | |_- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:965:7
[INFO] [stdout] |
[INFO] [stdout] 965 | / impl<'a,'b> Compare<&'b [u8; $N]> for &'a [u8] {
[INFO] [stdout] 966 | | #[inline(always)]
[INFO] [stdout] 967 | | fn compare(&self, t: &'b [u8; $N]) -> CompareResult {
[INFO] [stdout] 968 | | self.compare(&t[..])
[INFO] [stdout] ... |
[INFO] [stdout] 974 | | }
[INFO] [stdout] 975 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 992 | / array_impls! {
[INFO] [stdout] 993 | | 0 1 2 3 4 5 6 7 8 9
[INFO] [stdout] 994 | | 10 11 12 13 14 15 16 17 18 19
[INFO] [stdout] 995 | | 20 21 22 23 24 25 26 27 28 29
[INFO] [stdout] 996 | | 30 31 32
[INFO] [stdout] 997 | | }
[INFO] [stdout] | |_- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:967:9
[INFO] [stdout] |
[INFO] [stdout] 967 | / fn compare(&self, t: &'b [u8; $N]) -> CompareResult {
[INFO] [stdout] 968 | | self.compare(&t[..])
[INFO] [stdout] 969 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 992 | / array_impls! {
[INFO] [stdout] 993 | | 0 1 2 3 4 5 6 7 8 9
[INFO] [stdout] 994 | | 10 11 12 13 14 15 16 17 18 19
[INFO] [stdout] 995 | | 20 21 22 23 24 25 26 27 28 29
[INFO] [stdout] 996 | | 30 31 32
[INFO] [stdout] 997 | | }
[INFO] [stdout] | |_- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:972:9
[INFO] [stdout] |
[INFO] [stdout] 972 | / fn compare_no_case(&self, t: &'b [u8;$N]) -> CompareResult {
[INFO] [stdout] 973 | | self.compare_no_case(&t[..])
[INFO] [stdout] 974 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 992 | / array_impls! {
[INFO] [stdout] 993 | | 0 1 2 3 4 5 6 7 8 9
[INFO] [stdout] 994 | | 10 11 12 13 14 15 16 17 18 19
[INFO] [stdout] 995 | | 20 21 22 23 24 25 26 27 28 29
[INFO] [stdout] 996 | | 30 31 32
[INFO] [stdout] 997 | | }
[INFO] [stdout] | |_- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:766:1
[INFO] [stdout] |
[INFO] [stdout] 766 | / impl<'a> FindToken for &'a [u8] {
[INFO] [stdout] 767 | | fn find_token(&self, token: u8) -> bool {
[INFO] [stdout] 768 | | memchr::memchr(token, self).is_some()
[INFO] [stdout] 769 | | }
[INFO] [stdout] 770 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:767:3
[INFO] [stdout] |
[INFO] [stdout] 767 | / fn find_token(&self, token: u8) -> bool {
[INFO] [stdout] 768 | | memchr::memchr(token, self).is_some()
[INFO] [stdout] 769 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:772:1
[INFO] [stdout] |
[INFO] [stdout] 772 | / impl<'a> FindToken for &'a str {
[INFO] [stdout] 773 | | fn find_token(&self, token: u8) -> bool {
[INFO] [stdout] 774 | | self.as_bytes().find_token(token)
[INFO] [stdout] 775 | | }
[INFO] [stdout] 776 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:773:3
[INFO] [stdout] |
[INFO] [stdout] 773 | / fn find_token(&self, token: u8) -> bool {
[INFO] [stdout] 774 | | self.as_bytes().find_token(token)
[INFO] [stdout] 775 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:778:1
[INFO] [stdout] |
[INFO] [stdout] 778 | / impl<'a, 'b> FindToken<&'a u8> for &'b [u8] {
[INFO] [stdout] 779 | | fn find_token(&self, token: &u8) -> bool {
[INFO] [stdout] 780 | | memchr::memchr(*token, self).is_some()
[INFO] [stdout] 781 | | }
[INFO] [stdout] 782 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:779:3
[INFO] [stdout] |
[INFO] [stdout] 779 | / fn find_token(&self, token: &u8) -> bool {
[INFO] [stdout] 780 | | memchr::memchr(*token, self).is_some()
[INFO] [stdout] 781 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:784:1
[INFO] [stdout] |
[INFO] [stdout] 784 | / impl<'a, 'b> FindToken<&'a u8> for &'b str {
[INFO] [stdout] 785 | | fn find_token(&self, token: &u8) -> bool {
[INFO] [stdout] 786 | | self.as_bytes().find_token(token)
[INFO] [stdout] 787 | | }
[INFO] [stdout] 788 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:785:3
[INFO] [stdout] |
[INFO] [stdout] 785 | / fn find_token(&self, token: &u8) -> bool {
[INFO] [stdout] 786 | | self.as_bytes().find_token(token)
[INFO] [stdout] 787 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:790:1
[INFO] [stdout] |
[INFO] [stdout] 790 | / impl<'a> FindToken for &'a [u8] {
[INFO] [stdout] 791 | | fn find_token(&self, token: char) -> bool {
[INFO] [stdout] 792 | | for i in self.iter() {
[INFO] [stdout] 793 | | if token as u8 == *i {
[INFO] [stdout] ... |
[INFO] [stdout] 798 | | }
[INFO] [stdout] 799 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:791:3
[INFO] [stdout] |
[INFO] [stdout] 791 | / fn find_token(&self, token: char) -> bool {
[INFO] [stdout] 792 | | for i in self.iter() {
[INFO] [stdout] 793 | | if token as u8 == *i {
[INFO] [stdout] 794 | | return true;
[INFO] [stdout] ... |
[INFO] [stdout] 797 | | false
[INFO] [stdout] 798 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:801:1
[INFO] [stdout] |
[INFO] [stdout] 801 | / impl<'a> FindToken for &'a str {
[INFO] [stdout] 802 | | fn find_token(&self, token: char) -> bool {
[INFO] [stdout] 803 | | for i in self.chars() {
[INFO] [stdout] 804 | | if token == i {
[INFO] [stdout] ... |
[INFO] [stdout] 809 | | }
[INFO] [stdout] 810 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:802:3
[INFO] [stdout] |
[INFO] [stdout] 802 | / fn find_token(&self, token: char) -> bool {
[INFO] [stdout] 803 | | for i in self.chars() {
[INFO] [stdout] 804 | | if token == i {
[INFO] [stdout] 805 | | return true;
[INFO] [stdout] ... |
[INFO] [stdout] 808 | | false
[INFO] [stdout] 809 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:977:7
[INFO] [stdout] |
[INFO] [stdout] 977 | / impl FindToken for [u8; $N] {
[INFO] [stdout] 978 | | fn find_token(&self, token: u8) -> bool {
[INFO] [stdout] 979 | | memchr::memchr(token, &self[..]).is_some()
[INFO] [stdout] 980 | | }
[INFO] [stdout] 981 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 992 | / array_impls! {
[INFO] [stdout] 993 | | 0 1 2 3 4 5 6 7 8 9
[INFO] [stdout] 994 | | 10 11 12 13 14 15 16 17 18 19
[INFO] [stdout] 995 | | 20 21 22 23 24 25 26 27 28 29
[INFO] [stdout] 996 | | 30 31 32
[INFO] [stdout] 997 | | }
[INFO] [stdout] | |_- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:978:9
[INFO] [stdout] |
[INFO] [stdout] 978 | / fn find_token(&self, token: u8) -> bool {
[INFO] [stdout] 979 | | memchr::memchr(token, &self[..]).is_some()
[INFO] [stdout] 980 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 992 | / array_impls! {
[INFO] [stdout] 993 | | 0 1 2 3 4 5 6 7 8 9
[INFO] [stdout] 994 | | 10 11 12 13 14 15 16 17 18 19
[INFO] [stdout] 995 | | 20 21 22 23 24 25 26 27 28 29
[INFO] [stdout] 996 | | 30 31 32
[INFO] [stdout] 997 | | }
[INFO] [stdout] | |_- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:983:7
[INFO] [stdout] |
[INFO] [stdout] 983 | / impl<'a> FindToken<&'a u8> for [u8; $N] {
[INFO] [stdout] 984 | | fn find_token(&self, token: &u8) -> bool {
[INFO] [stdout] 985 | | memchr::memchr(*token, &self[..]).is_some()
[INFO] [stdout] 986 | | }
[INFO] [stdout] 987 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 992 | / array_impls! {
[INFO] [stdout] 993 | | 0 1 2 3 4 5 6 7 8 9
[INFO] [stdout] 994 | | 10 11 12 13 14 15 16 17 18 19
[INFO] [stdout] 995 | | 20 21 22 23 24 25 26 27 28 29
[INFO] [stdout] 996 | | 30 31 32
[INFO] [stdout] 997 | | }
[INFO] [stdout] | |_- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:984:9
[INFO] [stdout] |
[INFO] [stdout] 984 | / fn find_token(&self, token: &u8) -> bool {
[INFO] [stdout] 985 | | memchr::memchr(*token, &self[..]).is_some()
[INFO] [stdout] 986 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 992 | / array_impls! {
[INFO] [stdout] 993 | | 0 1 2 3 4 5 6 7 8 9
[INFO] [stdout] 994 | | 10 11 12 13 14 15 16 17 18 19
[INFO] [stdout] 995 | | 20 21 22 23 24 25 26 27 28 29
[INFO] [stdout] 996 | | 30 31 32
[INFO] [stdout] 997 | | }
[INFO] [stdout] | |_- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:818:1
[INFO] [stdout] |
[INFO] [stdout] 818 | / impl<'a, 'b> FindSubstring<&'b [u8]> for &'a [u8] {
[INFO] [stdout] 819 | | fn find_substring(&self, substr: &'b [u8]) -> Option {
[INFO] [stdout] 820 | | let substr_len = substr.len();
[INFO] [stdout] 821 | |
[INFO] [stdout] ... |
[INFO] [stdout] 852 | | }
[INFO] [stdout] 853 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:819:3
[INFO] [stdout] |
[INFO] [stdout] 819 | / fn find_substring(&self, substr: &'b [u8]) -> Option {
[INFO] [stdout] 820 | | let substr_len = substr.len();
[INFO] [stdout] 821 | |
[INFO] [stdout] 822 | | if substr_len == 0 {
[INFO] [stdout] ... |
[INFO] [stdout] 851 | | }
[INFO] [stdout] 852 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:855:1
[INFO] [stdout] |
[INFO] [stdout] 855 | / impl<'a, 'b> FindSubstring<&'b str> for &'a [u8] {
[INFO] [stdout] 856 | | fn find_substring(&self, substr: &'b str) -> Option {
[INFO] [stdout] 857 | | self.find_substring(AsBytes::as_bytes(substr))
[INFO] [stdout] 858 | | }
[INFO] [stdout] 859 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:856:3
[INFO] [stdout] |
[INFO] [stdout] 856 | / fn find_substring(&self, substr: &'b str) -> Option {
[INFO] [stdout] 857 | | self.find_substring(AsBytes::as_bytes(substr))
[INFO] [stdout] 858 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:861:1
[INFO] [stdout] |
[INFO] [stdout] 861 | / impl<'a, 'b> FindSubstring<&'b str> for &'a str {
[INFO] [stdout] 862 | | //returns byte index
[INFO] [stdout] 863 | | fn find_substring(&self, substr: &'b str) -> Option {
[INFO] [stdout] 864 | | self.find(substr)
[INFO] [stdout] 865 | | }
[INFO] [stdout] 866 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:863:3
[INFO] [stdout] |
[INFO] [stdout] 863 | / fn find_substring(&self, substr: &'b str) -> Option {
[INFO] [stdout] 864 | | self.find(substr)
[INFO] [stdout] 865 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:875:1
[INFO] [stdout] |
[INFO] [stdout] 875 | / impl<'a, R: FromStr> ParseTo for &'a [u8] {
[INFO] [stdout] 876 | | fn parse_to(&self) -> Option {
[INFO] [stdout] 877 | | from_utf8(self).ok().and_then(|s| s.parse().ok())
[INFO] [stdout] 878 | | }
[INFO] [stdout] 879 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:876:3
[INFO] [stdout] |
[INFO] [stdout] 876 | / fn parse_to(&self) -> Option {
[INFO] [stdout] 877 | | from_utf8(self).ok().and_then(|s| s.parse().ok())
[INFO] [stdout] 878 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:881:1
[INFO] [stdout] |
[INFO] [stdout] 881 | / impl<'a, R: FromStr> ParseTo for &'a str {
[INFO] [stdout] 882 | | fn parse_to(&self) -> Option {
[INFO] [stdout] 883 | | self.parse().ok()
[INFO] [stdout] 884 | | }
[INFO] [stdout] 885 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:882:3
[INFO] [stdout] |
[INFO] [stdout] 882 | / fn parse_to(&self) -> Option {
[INFO] [stdout] 883 | | self.parse().ok()
[INFO] [stdout] 884 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:912:9
[INFO] [stdout] |
[INFO] [stdout] 912 | / impl<'a> Slice<$ty> for &'a $for_type {
[INFO] [stdout] 913 | | impl_fn_slice!( $ty );
[INFO] [stdout] 914 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 933 | slice_ranges_impl! {str}
[INFO] [stdout] | ------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:899:9
[INFO] [stdout] |
[INFO] [stdout] 899 | / fn slice(&self, range:$ty) -> Self {
[INFO] [stdout] 900 | | &self[range]
[INFO] [stdout] 901 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 933 | slice_ranges_impl! {str}
[INFO] [stdout] | ------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:912:9
[INFO] [stdout] |
[INFO] [stdout] 912 | / impl<'a> Slice<$ty> for &'a $for_type {
[INFO] [stdout] 913 | | impl_fn_slice!( $ty );
[INFO] [stdout] 914 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 933 | slice_ranges_impl! {str}
[INFO] [stdout] | ------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:899:9
[INFO] [stdout] |
[INFO] [stdout] 899 | / fn slice(&self, range:$ty) -> Self {
[INFO] [stdout] 900 | | &self[range]
[INFO] [stdout] 901 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 933 | slice_ranges_impl! {str}
[INFO] [stdout] | ------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:912:9
[INFO] [stdout] |
[INFO] [stdout] 912 | / impl<'a> Slice<$ty> for &'a $for_type {
[INFO] [stdout] 913 | | impl_fn_slice!( $ty );
[INFO] [stdout] 914 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 933 | slice_ranges_impl! {str}
[INFO] [stdout] | ------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:899:9
[INFO] [stdout] |
[INFO] [stdout] 899 | / fn slice(&self, range:$ty) -> Self {
[INFO] [stdout] 900 | | &self[range]
[INFO] [stdout] 901 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 933 | slice_ranges_impl! {str}
[INFO] [stdout] | ------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:912:9
[INFO] [stdout] |
[INFO] [stdout] 912 | / impl<'a> Slice<$ty> for &'a $for_type {
[INFO] [stdout] 913 | | impl_fn_slice!( $ty );
[INFO] [stdout] 914 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 933 | slice_ranges_impl! {str}
[INFO] [stdout] | ------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:899:9
[INFO] [stdout] |
[INFO] [stdout] 899 | / fn slice(&self, range:$ty) -> Self {
[INFO] [stdout] 900 | | &self[range]
[INFO] [stdout] 901 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 933 | slice_ranges_impl! {str}
[INFO] [stdout] | ------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:907:9
[INFO] [stdout] |
[INFO] [stdout] 907 | / impl<'a, $for_type> Slice<$ty> for &'a [$for_type] {
[INFO] [stdout] 908 | | impl_fn_slice!( $ty );
[INFO] [stdout] 909 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 934 | slice_ranges_impl! {[T]}
[INFO] [stdout] | ------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:899:9
[INFO] [stdout] |
[INFO] [stdout] 899 | / fn slice(&self, range:$ty) -> Self {
[INFO] [stdout] 900 | | &self[range]
[INFO] [stdout] 901 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 934 | slice_ranges_impl! {[T]}
[INFO] [stdout] | ------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:907:9
[INFO] [stdout] |
[INFO] [stdout] 907 | / impl<'a, $for_type> Slice<$ty> for &'a [$for_type] {
[INFO] [stdout] 908 | | impl_fn_slice!( $ty );
[INFO] [stdout] 909 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 934 | slice_ranges_impl! {[T]}
[INFO] [stdout] | ------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:899:9
[INFO] [stdout] |
[INFO] [stdout] 899 | / fn slice(&self, range:$ty) -> Self {
[INFO] [stdout] 900 | | &self[range]
[INFO] [stdout] 901 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 934 | slice_ranges_impl! {[T]}
[INFO] [stdout] | ------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:907:9
[INFO] [stdout] |
[INFO] [stdout] 907 | / impl<'a, $for_type> Slice<$ty> for &'a [$for_type] {
[INFO] [stdout] 908 | | impl_fn_slice!( $ty );
[INFO] [stdout] 909 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 934 | slice_ranges_impl! {[T]}
[INFO] [stdout] | ------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:899:9
[INFO] [stdout] |
[INFO] [stdout] 899 | / fn slice(&self, range:$ty) -> Self {
[INFO] [stdout] 900 | | &self[range]
[INFO] [stdout] 901 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 934 | slice_ranges_impl! {[T]}
[INFO] [stdout] | ------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:907:9
[INFO] [stdout] |
[INFO] [stdout] 907 | / impl<'a, $for_type> Slice<$ty> for &'a [$for_type] {
[INFO] [stdout] 908 | | impl_fn_slice!( $ty );
[INFO] [stdout] 909 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 934 | slice_ranges_impl! {[T]}
[INFO] [stdout] | ------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:899:9
[INFO] [stdout] |
[INFO] [stdout] 899 | / fn slice(&self, range:$ty) -> Self {
[INFO] [stdout] 900 | | &self[range]
[INFO] [stdout] 901 | | }
[INFO] [stdout] | |_________^
[INFO] [stdout] ...
[INFO] [stdout] 934 | slice_ranges_impl! {[T]}
[INFO] [stdout] | ------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1018:1
[INFO] [stdout] |
[INFO] [stdout] 1018 | / impl ExtendInto for [u8] {
[INFO] [stdout] 1019 | | type Item = u8;
[INFO] [stdout] 1020 | | type Extender = Vec;
[INFO] [stdout] 1021 | |
[INFO] [stdout] ... |
[INFO] [stdout] 1029 | | }
[INFO] [stdout] 1030 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1019:3
[INFO] [stdout] |
[INFO] [stdout] 1019 | type Item = u8;
[INFO] [stdout] | ^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1020:3
[INFO] [stdout] |
[INFO] [stdout] 1020 | type Extender = Vec;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1023:3
[INFO] [stdout] |
[INFO] [stdout] 1023 | / fn new_builder(&self) -> Vec {
[INFO] [stdout] 1024 | | Vec::new()
[INFO] [stdout] 1025 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1027:3
[INFO] [stdout] |
[INFO] [stdout] 1027 | / fn extend_into(&self, acc: &mut Vec) {
[INFO] [stdout] 1028 | | acc.extend(self.iter().cloned());
[INFO] [stdout] 1029 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1033:1
[INFO] [stdout] |
[INFO] [stdout] 1033 | / impl ExtendInto for &[u8] {
[INFO] [stdout] 1034 | | type Item = u8;
[INFO] [stdout] 1035 | | type Extender = Vec;
[INFO] [stdout] 1036 | |
[INFO] [stdout] ... |
[INFO] [stdout] 1044 | | }
[INFO] [stdout] 1045 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1034:3
[INFO] [stdout] |
[INFO] [stdout] 1034 | type Item = u8;
[INFO] [stdout] | ^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1035:3
[INFO] [stdout] |
[INFO] [stdout] 1035 | type Extender = Vec;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1038:3
[INFO] [stdout] |
[INFO] [stdout] 1038 | / fn new_builder(&self) -> Vec {
[INFO] [stdout] 1039 | | Vec::new()
[INFO] [stdout] 1040 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1042:3
[INFO] [stdout] |
[INFO] [stdout] 1042 | / fn extend_into(&self, acc: &mut Vec) {
[INFO] [stdout] 1043 | | acc.extend(self.iter().cloned());
[INFO] [stdout] 1044 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1049:1
[INFO] [stdout] |
[INFO] [stdout] 1049 | / impl ExtendInto for str {
[INFO] [stdout] 1050 | | type Item = char;
[INFO] [stdout] 1051 | | type Extender = String;
[INFO] [stdout] 1052 | |
[INFO] [stdout] ... |
[INFO] [stdout] 1060 | | }
[INFO] [stdout] 1061 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1050:3
[INFO] [stdout] |
[INFO] [stdout] 1050 | type Item = char;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1051:3
[INFO] [stdout] |
[INFO] [stdout] 1051 | type Extender = String;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1054:3
[INFO] [stdout] |
[INFO] [stdout] 1054 | / fn new_builder(&self) -> String {
[INFO] [stdout] 1055 | | String::new()
[INFO] [stdout] 1056 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1058:3
[INFO] [stdout] |
[INFO] [stdout] 1058 | / fn extend_into(&self, acc: &mut String) {
[INFO] [stdout] 1059 | | acc.push_str(self);
[INFO] [stdout] 1060 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1064:1
[INFO] [stdout] |
[INFO] [stdout] 1064 | / impl ExtendInto for &str {
[INFO] [stdout] 1065 | | type Item = char;
[INFO] [stdout] 1066 | | type Extender = String;
[INFO] [stdout] 1067 | |
[INFO] [stdout] ... |
[INFO] [stdout] 1075 | | }
[INFO] [stdout] 1076 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1065:3
[INFO] [stdout] |
[INFO] [stdout] 1065 | type Item = char;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1066:3
[INFO] [stdout] |
[INFO] [stdout] 1066 | type Extender = String;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1069:3
[INFO] [stdout] |
[INFO] [stdout] 1069 | / fn new_builder(&self) -> String {
[INFO] [stdout] 1070 | | String::new()
[INFO] [stdout] 1071 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1073:3
[INFO] [stdout] |
[INFO] [stdout] 1073 | / fn extend_into(&self, acc: &mut String) {
[INFO] [stdout] 1074 | | acc.push_str(self);
[INFO] [stdout] 1075 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1079:1
[INFO] [stdout] |
[INFO] [stdout] 1079 | / impl ExtendInto for char {
[INFO] [stdout] 1080 | | type Item = char;
[INFO] [stdout] 1081 | | type Extender = String;
[INFO] [stdout] 1082 | |
[INFO] [stdout] ... |
[INFO] [stdout] 1090 | | }
[INFO] [stdout] 1091 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1080:3
[INFO] [stdout] |
[INFO] [stdout] 1080 | type Item = char;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1081:3
[INFO] [stdout] |
[INFO] [stdout] 1081 | type Extender = String;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1084:3
[INFO] [stdout] |
[INFO] [stdout] 1084 | / fn new_builder(&self) -> String {
[INFO] [stdout] 1085 | | String::new()
[INFO] [stdout] 1086 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1088:3
[INFO] [stdout] |
[INFO] [stdout] 1088 | / fn extend_into(&self, acc: &mut String) {
[INFO] [stdout] 1089 | | acc.push(*self);
[INFO] [stdout] 1090 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1104:1
[INFO] [stdout] |
[INFO] [stdout] 1104 | / impl ToUsize for u8 {
[INFO] [stdout] 1105 | | #[inline]
[INFO] [stdout] 1106 | | fn to_usize(&self) -> usize {
[INFO] [stdout] 1107 | | *self as usize
[INFO] [stdout] 1108 | | }
[INFO] [stdout] 1109 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1106:3
[INFO] [stdout] |
[INFO] [stdout] 1106 | / fn to_usize(&self) -> usize {
[INFO] [stdout] 1107 | | *self as usize
[INFO] [stdout] 1108 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1111:1
[INFO] [stdout] |
[INFO] [stdout] 1111 | / impl ToUsize for u16 {
[INFO] [stdout] 1112 | | #[inline]
[INFO] [stdout] 1113 | | fn to_usize(&self) -> usize {
[INFO] [stdout] 1114 | | *self as usize
[INFO] [stdout] 1115 | | }
[INFO] [stdout] 1116 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1113:3
[INFO] [stdout] |
[INFO] [stdout] 1113 | / fn to_usize(&self) -> usize {
[INFO] [stdout] 1114 | | *self as usize
[INFO] [stdout] 1115 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1118:1
[INFO] [stdout] |
[INFO] [stdout] 1118 | / impl ToUsize for usize {
[INFO] [stdout] 1119 | | #[inline]
[INFO] [stdout] 1120 | | fn to_usize(&self) -> usize {
[INFO] [stdout] 1121 | | *self
[INFO] [stdout] 1122 | | }
[INFO] [stdout] 1123 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1120:3
[INFO] [stdout] |
[INFO] [stdout] 1120 | / fn to_usize(&self) -> usize {
[INFO] [stdout] 1121 | | *self
[INFO] [stdout] 1122 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1126:1
[INFO] [stdout] |
[INFO] [stdout] 1126 | / impl ToUsize for u32 {
[INFO] [stdout] 1127 | | #[inline]
[INFO] [stdout] 1128 | | fn to_usize(&self) -> usize {
[INFO] [stdout] 1129 | | *self as usize
[INFO] [stdout] 1130 | | }
[INFO] [stdout] 1131 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1128:3
[INFO] [stdout] |
[INFO] [stdout] 1128 | / fn to_usize(&self) -> usize {
[INFO] [stdout] 1129 | | *self as usize
[INFO] [stdout] 1130 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1134:1
[INFO] [stdout] |
[INFO] [stdout] 1134 | / impl ToUsize for u64 {
[INFO] [stdout] 1135 | | #[inline]
[INFO] [stdout] 1136 | | fn to_usize(&self) -> usize {
[INFO] [stdout] 1137 | | *self as usize
[INFO] [stdout] 1138 | | }
[INFO] [stdout] 1139 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1136:3
[INFO] [stdout] |
[INFO] [stdout] 1136 | / fn to_usize(&self) -> usize {
[INFO] [stdout] 1137 | | *self as usize
[INFO] [stdout] 1138 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1147:1
[INFO] [stdout] |
[INFO] [stdout] 1147 | / impl ErrorConvert<(I, ErrorKind)> for ((I, usize), ErrorKind) {
[INFO] [stdout] 1148 | | fn convert(self) -> (I, ErrorKind) {
[INFO] [stdout] 1149 | | ((self.0).0, self.1)
[INFO] [stdout] 1150 | | }
[INFO] [stdout] 1151 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1148:3
[INFO] [stdout] |
[INFO] [stdout] 1148 | / fn convert(self) -> (I, ErrorKind) {
[INFO] [stdout] 1149 | | ((self.0).0, self.1)
[INFO] [stdout] 1150 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1153:1
[INFO] [stdout] |
[INFO] [stdout] 1153 | / impl ErrorConvert<((I, usize), ErrorKind)> for (I, ErrorKind) {
[INFO] [stdout] 1154 | | fn convert(self) -> ((I, usize), ErrorKind) {
[INFO] [stdout] 1155 | | ((self.0, 0), self.1)
[INFO] [stdout] 1156 | | }
[INFO] [stdout] 1157 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/traits.rs:1154:3
[INFO] [stdout] |
[INFO] [stdout] 1154 | / fn convert(self) -> ((I, usize), ErrorKind) {
[INFO] [stdout] 1155 | | ((self.0, 0), self.1)
[INFO] [stdout] 1156 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:104:5
[INFO] [stdout] |
[INFO] [stdout] 104 | / impl<
[INFO] [stdout] 105 | | Input: Clone, Output, Error: ParseError,
[INFO] [stdout] 106 | | $($id: Fn(Input) -> IResult),+
[INFO] [stdout] 107 | | > Alt for ( $($id),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 114 | | }
[INFO] [stdout] 115 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:109:7
[INFO] [stdout] |
[INFO] [stdout] 109 | / fn choice(&self, input: Input) -> IResult {
[INFO] [stdout] 110 | | let mut err: Option = None;
[INFO] [stdout] 111 | | alt_trait_inner!(0, self, input, err, $($id)+);
[INFO] [stdout] 112 | |
[INFO] [stdout] 113 | | Err(Err::Error(Error::append(input, ErrorKind::Alt, err.unwrap())))
[INFO] [stdout] 114 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:104:5
[INFO] [stdout] |
[INFO] [stdout] 104 | / impl<
[INFO] [stdout] 105 | | Input: Clone, Output, Error: ParseError,
[INFO] [stdout] 106 | | $($id: Fn(Input) -> IResult),+
[INFO] [stdout] 107 | | > Alt for ( $($id),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 114 | | }
[INFO] [stdout] 115 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:109:7
[INFO] [stdout] |
[INFO] [stdout] 109 | / fn choice(&self, input: Input) -> IResult {
[INFO] [stdout] 110 | | let mut err: Option = None;
[INFO] [stdout] 111 | | alt_trait_inner!(0, self, input, err, $($id)+);
[INFO] [stdout] 112 | |
[INFO] [stdout] 113 | | Err(Err::Error(Error::append(input, ErrorKind::Alt, err.unwrap())))
[INFO] [stdout] 114 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:104:5
[INFO] [stdout] |
[INFO] [stdout] 104 | / impl<
[INFO] [stdout] 105 | | Input: Clone, Output, Error: ParseError,
[INFO] [stdout] 106 | | $($id: Fn(Input) -> IResult),+
[INFO] [stdout] 107 | | > Alt for ( $($id),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 114 | | }
[INFO] [stdout] 115 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:109:7
[INFO] [stdout] |
[INFO] [stdout] 109 | / fn choice(&self, input: Input) -> IResult {
[INFO] [stdout] 110 | | let mut err: Option = None;
[INFO] [stdout] 111 | | alt_trait_inner!(0, self, input, err, $($id)+);
[INFO] [stdout] 112 | |
[INFO] [stdout] 113 | | Err(Err::Error(Error::append(input, ErrorKind::Alt, err.unwrap())))
[INFO] [stdout] 114 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:104:5
[INFO] [stdout] |
[INFO] [stdout] 104 | / impl<
[INFO] [stdout] 105 | | Input: Clone, Output, Error: ParseError,
[INFO] [stdout] 106 | | $($id: Fn(Input) -> IResult),+
[INFO] [stdout] 107 | | > Alt for ( $($id),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 114 | | }
[INFO] [stdout] 115 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:109:7
[INFO] [stdout] |
[INFO] [stdout] 109 | / fn choice(&self, input: Input) -> IResult {
[INFO] [stdout] 110 | | let mut err: Option = None;
[INFO] [stdout] 111 | | alt_trait_inner!(0, self, input, err, $($id)+);
[INFO] [stdout] 112 | |
[INFO] [stdout] 113 | | Err(Err::Error(Error::append(input, ErrorKind::Alt, err.unwrap())))
[INFO] [stdout] 114 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:104:5
[INFO] [stdout] |
[INFO] [stdout] 104 | / impl<
[INFO] [stdout] 105 | | Input: Clone, Output, Error: ParseError,
[INFO] [stdout] 106 | | $($id: Fn(Input) -> IResult),+
[INFO] [stdout] 107 | | > Alt for ( $($id),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 114 | | }
[INFO] [stdout] 115 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:109:7
[INFO] [stdout] |
[INFO] [stdout] 109 | / fn choice(&self, input: Input) -> IResult {
[INFO] [stdout] 110 | | let mut err: Option = None;
[INFO] [stdout] 111 | | alt_trait_inner!(0, self, input, err, $($id)+);
[INFO] [stdout] 112 | |
[INFO] [stdout] 113 | | Err(Err::Error(Error::append(input, ErrorKind::Alt, err.unwrap())))
[INFO] [stdout] 114 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:104:5
[INFO] [stdout] |
[INFO] [stdout] 104 | / impl<
[INFO] [stdout] 105 | | Input: Clone, Output, Error: ParseError,
[INFO] [stdout] 106 | | $($id: Fn(Input) -> IResult),+
[INFO] [stdout] 107 | | > Alt for ( $($id),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 114 | | }
[INFO] [stdout] 115 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:109:7
[INFO] [stdout] |
[INFO] [stdout] 109 | / fn choice(&self, input: Input) -> IResult {
[INFO] [stdout] 110 | | let mut err: Option = None;
[INFO] [stdout] 111 | | alt_trait_inner!(0, self, input, err, $($id)+);
[INFO] [stdout] 112 | |
[INFO] [stdout] 113 | | Err(Err::Error(Error::append(input, ErrorKind::Alt, err.unwrap())))
[INFO] [stdout] 114 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:104:5
[INFO] [stdout] |
[INFO] [stdout] 104 | / impl<
[INFO] [stdout] 105 | | Input: Clone, Output, Error: ParseError,
[INFO] [stdout] 106 | | $($id: Fn(Input) -> IResult),+
[INFO] [stdout] 107 | | > Alt for ( $($id),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 114 | | }
[INFO] [stdout] 115 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:109:7
[INFO] [stdout] |
[INFO] [stdout] 109 | / fn choice(&self, input: Input) -> IResult {
[INFO] [stdout] 110 | | let mut err: Option = None;
[INFO] [stdout] 111 | | alt_trait_inner!(0, self, input, err, $($id)+);
[INFO] [stdout] 112 | |
[INFO] [stdout] 113 | | Err(Err::Error(Error::append(input, ErrorKind::Alt, err.unwrap())))
[INFO] [stdout] 114 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:104:5
[INFO] [stdout] |
[INFO] [stdout] 104 | / impl<
[INFO] [stdout] 105 | | Input: Clone, Output, Error: ParseError,
[INFO] [stdout] 106 | | $($id: Fn(Input) -> IResult),+
[INFO] [stdout] 107 | | > Alt for ( $($id),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 114 | | }
[INFO] [stdout] 115 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:109:7
[INFO] [stdout] |
[INFO] [stdout] 109 | / fn choice(&self, input: Input) -> IResult {
[INFO] [stdout] 110 | | let mut err: Option = None;
[INFO] [stdout] 111 | | alt_trait_inner!(0, self, input, err, $($id)+);
[INFO] [stdout] 112 | |
[INFO] [stdout] 113 | | Err(Err::Error(Error::append(input, ErrorKind::Alt, err.unwrap())))
[INFO] [stdout] 114 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:104:5
[INFO] [stdout] |
[INFO] [stdout] 104 | / impl<
[INFO] [stdout] 105 | | Input: Clone, Output, Error: ParseError,
[INFO] [stdout] 106 | | $($id: Fn(Input) -> IResult),+
[INFO] [stdout] 107 | | > Alt for ( $($id),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 114 | | }
[INFO] [stdout] 115 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:109:7
[INFO] [stdout] |
[INFO] [stdout] 109 | / fn choice(&self, input: Input) -> IResult {
[INFO] [stdout] 110 | | let mut err: Option = None;
[INFO] [stdout] 111 | | alt_trait_inner!(0, self, input, err, $($id)+);
[INFO] [stdout] 112 | |
[INFO] [stdout] 113 | | Err(Err::Error(Error::append(input, ErrorKind::Alt, err.unwrap())))
[INFO] [stdout] 114 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:104:5
[INFO] [stdout] |
[INFO] [stdout] 104 | / impl<
[INFO] [stdout] 105 | | Input: Clone, Output, Error: ParseError,
[INFO] [stdout] 106 | | $($id: Fn(Input) -> IResult),+
[INFO] [stdout] 107 | | > Alt for ( $($id),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 114 | | }
[INFO] [stdout] 115 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:109:7
[INFO] [stdout] |
[INFO] [stdout] 109 | / fn choice(&self, input: Input) -> IResult {
[INFO] [stdout] 110 | | let mut err: Option = None;
[INFO] [stdout] 111 | | alt_trait_inner!(0, self, input, err, $($id)+);
[INFO] [stdout] 112 | |
[INFO] [stdout] 113 | | Err(Err::Error(Error::append(input, ErrorKind::Alt, err.unwrap())))
[INFO] [stdout] 114 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:104:5
[INFO] [stdout] |
[INFO] [stdout] 104 | / impl<
[INFO] [stdout] 105 | | Input: Clone, Output, Error: ParseError,
[INFO] [stdout] 106 | | $($id: Fn(Input) -> IResult),+
[INFO] [stdout] 107 | | > Alt for ( $($id),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 114 | | }
[INFO] [stdout] 115 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:109:7
[INFO] [stdout] |
[INFO] [stdout] 109 | / fn choice(&self, input: Input) -> IResult {
[INFO] [stdout] 110 | | let mut err: Option = None;
[INFO] [stdout] 111 | | alt_trait_inner!(0, self, input, err, $($id)+);
[INFO] [stdout] 112 | |
[INFO] [stdout] 113 | | Err(Err::Error(Error::append(input, ErrorKind::Alt, err.unwrap())))
[INFO] [stdout] 114 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:104:5
[INFO] [stdout] |
[INFO] [stdout] 104 | / impl<
[INFO] [stdout] 105 | | Input: Clone, Output, Error: ParseError,
[INFO] [stdout] 106 | | $($id: Fn(Input) -> IResult),+
[INFO] [stdout] 107 | | > Alt for ( $($id),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 114 | | }
[INFO] [stdout] 115 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:109:7
[INFO] [stdout] |
[INFO] [stdout] 109 | / fn choice(&self, input: Input) -> IResult {
[INFO] [stdout] 110 | | let mut err: Option = None;
[INFO] [stdout] 111 | | alt_trait_inner!(0, self, input, err, $($id)+);
[INFO] [stdout] 112 | |
[INFO] [stdout] 113 | | Err(Err::Error(Error::append(input, ErrorKind::Alt, err.unwrap())))
[INFO] [stdout] 114 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:104:5
[INFO] [stdout] |
[INFO] [stdout] 104 | / impl<
[INFO] [stdout] 105 | | Input: Clone, Output, Error: ParseError,
[INFO] [stdout] 106 | | $($id: Fn(Input) -> IResult),+
[INFO] [stdout] 107 | | > Alt for ( $($id),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 114 | | }
[INFO] [stdout] 115 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:109:7
[INFO] [stdout] |
[INFO] [stdout] 109 | / fn choice(&self, input: Input) -> IResult {
[INFO] [stdout] 110 | | let mut err: Option = None;
[INFO] [stdout] 111 | | alt_trait_inner!(0, self, input, err, $($id)+);
[INFO] [stdout] 112 | |
[INFO] [stdout] 113 | | Err(Err::Error(Error::append(input, ErrorKind::Alt, err.unwrap())))
[INFO] [stdout] 114 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:104:5
[INFO] [stdout] |
[INFO] [stdout] 104 | / impl<
[INFO] [stdout] 105 | | Input: Clone, Output, Error: ParseError,
[INFO] [stdout] 106 | | $($id: Fn(Input) -> IResult),+
[INFO] [stdout] 107 | | > Alt for ( $($id),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 114 | | }
[INFO] [stdout] 115 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:109:7
[INFO] [stdout] |
[INFO] [stdout] 109 | / fn choice(&self, input: Input) -> IResult {
[INFO] [stdout] 110 | | let mut err: Option = None;
[INFO] [stdout] 111 | | alt_trait_inner!(0, self, input, err, $($id)+);
[INFO] [stdout] 112 | |
[INFO] [stdout] 113 | | Err(Err::Error(Error::append(input, ErrorKind::Alt, err.unwrap())))
[INFO] [stdout] 114 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:104:5
[INFO] [stdout] |
[INFO] [stdout] 104 | / impl<
[INFO] [stdout] 105 | | Input: Clone, Output, Error: ParseError,
[INFO] [stdout] 106 | | $($id: Fn(Input) -> IResult),+
[INFO] [stdout] 107 | | > Alt for ( $($id),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 114 | | }
[INFO] [stdout] 115 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:109:7
[INFO] [stdout] |
[INFO] [stdout] 109 | / fn choice(&self, input: Input) -> IResult {
[INFO] [stdout] 110 | | let mut err: Option = None;
[INFO] [stdout] 111 | | alt_trait_inner!(0, self, input, err, $($id)+);
[INFO] [stdout] 112 | |
[INFO] [stdout] 113 | | Err(Err::Error(Error::append(input, ErrorKind::Alt, err.unwrap())))
[INFO] [stdout] 114 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:104:5
[INFO] [stdout] |
[INFO] [stdout] 104 | / impl<
[INFO] [stdout] 105 | | Input: Clone, Output, Error: ParseError,
[INFO] [stdout] 106 | | $($id: Fn(Input) -> IResult),+
[INFO] [stdout] 107 | | > Alt for ( $($id),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 114 | | }
[INFO] [stdout] 115 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:109:7
[INFO] [stdout] |
[INFO] [stdout] 109 | / fn choice(&self, input: Input) -> IResult {
[INFO] [stdout] 110 | | let mut err: Option = None;
[INFO] [stdout] 111 | | alt_trait_inner!(0, self, input, err, $($id)+);
[INFO] [stdout] 112 | |
[INFO] [stdout] 113 | | Err(Err::Error(Error::append(input, ErrorKind::Alt, err.unwrap())))
[INFO] [stdout] 114 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:104:5
[INFO] [stdout] |
[INFO] [stdout] 104 | / impl<
[INFO] [stdout] 105 | | Input: Clone, Output, Error: ParseError,
[INFO] [stdout] 106 | | $($id: Fn(Input) -> IResult),+
[INFO] [stdout] 107 | | > Alt for ( $($id),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 114 | | }
[INFO] [stdout] 115 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:109:7
[INFO] [stdout] |
[INFO] [stdout] 109 | / fn choice(&self, input: Input) -> IResult {
[INFO] [stdout] 110 | | let mut err: Option = None;
[INFO] [stdout] 111 | | alt_trait_inner!(0, self, input, err, $($id)+);
[INFO] [stdout] 112 | |
[INFO] [stdout] 113 | | Err(Err::Error(Error::append(input, ErrorKind::Alt, err.unwrap())))
[INFO] [stdout] 114 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:104:5
[INFO] [stdout] |
[INFO] [stdout] 104 | / impl<
[INFO] [stdout] 105 | | Input: Clone, Output, Error: ParseError,
[INFO] [stdout] 106 | | $($id: Fn(Input) -> IResult),+
[INFO] [stdout] 107 | | > Alt for ( $($id),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 114 | | }
[INFO] [stdout] 115 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:109:7
[INFO] [stdout] |
[INFO] [stdout] 109 | / fn choice(&self, input: Input) -> IResult {
[INFO] [stdout] 110 | | let mut err: Option = None;
[INFO] [stdout] 111 | | alt_trait_inner!(0, self, input, err, $($id)+);
[INFO] [stdout] 112 | |
[INFO] [stdout] 113 | | Err(Err::Error(Error::append(input, ErrorKind::Alt, err.unwrap())))
[INFO] [stdout] 114 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:104:5
[INFO] [stdout] |
[INFO] [stdout] 104 | / impl<
[INFO] [stdout] 105 | | Input: Clone, Output, Error: ParseError,
[INFO] [stdout] 106 | | $($id: Fn(Input) -> IResult),+
[INFO] [stdout] 107 | | > Alt for ( $($id),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 114 | | }
[INFO] [stdout] 115 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:109:7
[INFO] [stdout] |
[INFO] [stdout] 109 | / fn choice(&self, input: Input) -> IResult {
[INFO] [stdout] 110 | | let mut err: Option = None;
[INFO] [stdout] 111 | | alt_trait_inner!(0, self, input, err, $($id)+);
[INFO] [stdout] 112 | |
[INFO] [stdout] 113 | | Err(Err::Error(Error::append(input, ErrorKind::Alt, err.unwrap())))
[INFO] [stdout] 114 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:104:5
[INFO] [stdout] |
[INFO] [stdout] 104 | / impl<
[INFO] [stdout] 105 | | Input: Clone, Output, Error: ParseError,
[INFO] [stdout] 106 | | $($id: Fn(Input) -> IResult),+
[INFO] [stdout] 107 | | > Alt for ( $($id),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 114 | | }
[INFO] [stdout] 115 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:109:7
[INFO] [stdout] |
[INFO] [stdout] 109 | / fn choice(&self, input: Input) -> IResult {
[INFO] [stdout] 110 | | let mut err: Option = None;
[INFO] [stdout] 111 | | alt_trait_inner!(0, self, input, err, $($id)+);
[INFO] [stdout] 112 | |
[INFO] [stdout] 113 | | Err(Err::Error(Error::append(input, ErrorKind::Alt, err.unwrap())))
[INFO] [stdout] 114 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 145 | alt_trait!(A B C D E F G H I J K L M N O P Q R S T U);
[INFO] [stdout] | ------------------------------------------------------ in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:166:5
[INFO] [stdout] |
[INFO] [stdout] 166 | / impl<
[INFO] [stdout] 167 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 168 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 169 | | > Permutation for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 191 | | }
[INFO] [stdout] 192 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:171:7
[INFO] [stdout] |
[INFO] [stdout] 171 | / fn permutation(&self, mut input: Input) -> IResult {
[INFO] [stdout] 172 | | let mut res = permutation_init!((), $($name),+);
[INFO] [stdout] 173 | |
[INFO] [stdout] 174 | | loop {
[INFO] [stdout] ... |
[INFO] [stdout] 190 | | }
[INFO] [stdout] 191 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:166:5
[INFO] [stdout] |
[INFO] [stdout] 166 | / impl<
[INFO] [stdout] 167 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 168 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 169 | | > Permutation for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 191 | | }
[INFO] [stdout] 192 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:171:7
[INFO] [stdout] |
[INFO] [stdout] 171 | / fn permutation(&self, mut input: Input) -> IResult {
[INFO] [stdout] 172 | | let mut res = permutation_init!((), $($name),+);
[INFO] [stdout] 173 | |
[INFO] [stdout] 174 | | loop {
[INFO] [stdout] ... |
[INFO] [stdout] 190 | | }
[INFO] [stdout] 191 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:166:5
[INFO] [stdout] |
[INFO] [stdout] 166 | / impl<
[INFO] [stdout] 167 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 168 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 169 | | > Permutation for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 191 | | }
[INFO] [stdout] 192 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:171:7
[INFO] [stdout] |
[INFO] [stdout] 171 | / fn permutation(&self, mut input: Input) -> IResult {
[INFO] [stdout] 172 | | let mut res = permutation_init!((), $($name),+);
[INFO] [stdout] 173 | |
[INFO] [stdout] 174 | | loop {
[INFO] [stdout] ... |
[INFO] [stdout] 190 | | }
[INFO] [stdout] 191 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:166:5
[INFO] [stdout] |
[INFO] [stdout] 166 | / impl<
[INFO] [stdout] 167 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 168 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 169 | | > Permutation for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 191 | | }
[INFO] [stdout] 192 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:171:7
[INFO] [stdout] |
[INFO] [stdout] 171 | / fn permutation(&self, mut input: Input) -> IResult {
[INFO] [stdout] 172 | | let mut res = permutation_init!((), $($name),+);
[INFO] [stdout] 173 | |
[INFO] [stdout] 174 | | loop {
[INFO] [stdout] ... |
[INFO] [stdout] 190 | | }
[INFO] [stdout] 191 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:166:5
[INFO] [stdout] |
[INFO] [stdout] 166 | / impl<
[INFO] [stdout] 167 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 168 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 169 | | > Permutation for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 191 | | }
[INFO] [stdout] 192 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:171:7
[INFO] [stdout] |
[INFO] [stdout] 171 | / fn permutation(&self, mut input: Input) -> IResult {
[INFO] [stdout] 172 | | let mut res = permutation_init!((), $($name),+);
[INFO] [stdout] 173 | |
[INFO] [stdout] 174 | | loop {
[INFO] [stdout] ... |
[INFO] [stdout] 190 | | }
[INFO] [stdout] 191 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:166:5
[INFO] [stdout] |
[INFO] [stdout] 166 | / impl<
[INFO] [stdout] 167 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 168 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 169 | | > Permutation for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 191 | | }
[INFO] [stdout] 192 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:171:7
[INFO] [stdout] |
[INFO] [stdout] 171 | / fn permutation(&self, mut input: Input) -> IResult {
[INFO] [stdout] 172 | | let mut res = permutation_init!((), $($name),+);
[INFO] [stdout] 173 | |
[INFO] [stdout] 174 | | loop {
[INFO] [stdout] ... |
[INFO] [stdout] 190 | | }
[INFO] [stdout] 191 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:166:5
[INFO] [stdout] |
[INFO] [stdout] 166 | / impl<
[INFO] [stdout] 167 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 168 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 169 | | > Permutation for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 191 | | }
[INFO] [stdout] 192 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:171:7
[INFO] [stdout] |
[INFO] [stdout] 171 | / fn permutation(&self, mut input: Input) -> IResult {
[INFO] [stdout] 172 | | let mut res = permutation_init!((), $($name),+);
[INFO] [stdout] 173 | |
[INFO] [stdout] 174 | | loop {
[INFO] [stdout] ... |
[INFO] [stdout] 190 | | }
[INFO] [stdout] 191 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:166:5
[INFO] [stdout] |
[INFO] [stdout] 166 | / impl<
[INFO] [stdout] 167 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 168 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 169 | | > Permutation for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 191 | | }
[INFO] [stdout] 192 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:171:7
[INFO] [stdout] |
[INFO] [stdout] 171 | / fn permutation(&self, mut input: Input) -> IResult {
[INFO] [stdout] 172 | | let mut res = permutation_init!((), $($name),+);
[INFO] [stdout] 173 | |
[INFO] [stdout] 174 | | loop {
[INFO] [stdout] ... |
[INFO] [stdout] 190 | | }
[INFO] [stdout] 191 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:166:5
[INFO] [stdout] |
[INFO] [stdout] 166 | / impl<
[INFO] [stdout] 167 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 168 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 169 | | > Permutation for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 191 | | }
[INFO] [stdout] 192 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:171:7
[INFO] [stdout] |
[INFO] [stdout] 171 | / fn permutation(&self, mut input: Input) -> IResult {
[INFO] [stdout] 172 | | let mut res = permutation_init!((), $($name),+);
[INFO] [stdout] 173 | |
[INFO] [stdout] 174 | | loop {
[INFO] [stdout] ... |
[INFO] [stdout] 190 | | }
[INFO] [stdout] 191 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:166:5
[INFO] [stdout] |
[INFO] [stdout] 166 | / impl<
[INFO] [stdout] 167 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 168 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 169 | | > Permutation for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 191 | | }
[INFO] [stdout] 192 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:171:7
[INFO] [stdout] |
[INFO] [stdout] 171 | / fn permutation(&self, mut input: Input) -> IResult {
[INFO] [stdout] 172 | | let mut res = permutation_init!((), $($name),+);
[INFO] [stdout] 173 | |
[INFO] [stdout] 174 | | loop {
[INFO] [stdout] ... |
[INFO] [stdout] 190 | | }
[INFO] [stdout] 191 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:166:5
[INFO] [stdout] |
[INFO] [stdout] 166 | / impl<
[INFO] [stdout] 167 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 168 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 169 | | > Permutation for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 191 | | }
[INFO] [stdout] 192 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:171:7
[INFO] [stdout] |
[INFO] [stdout] 171 | / fn permutation(&self, mut input: Input) -> IResult {
[INFO] [stdout] 172 | | let mut res = permutation_init!((), $($name),+);
[INFO] [stdout] 173 | |
[INFO] [stdout] 174 | | loop {
[INFO] [stdout] ... |
[INFO] [stdout] 190 | | }
[INFO] [stdout] 191 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:166:5
[INFO] [stdout] |
[INFO] [stdout] 166 | / impl<
[INFO] [stdout] 167 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 168 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 169 | | > Permutation for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 191 | | }
[INFO] [stdout] 192 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:171:7
[INFO] [stdout] |
[INFO] [stdout] 171 | / fn permutation(&self, mut input: Input) -> IResult {
[INFO] [stdout] 172 | | let mut res = permutation_init!((), $($name),+);
[INFO] [stdout] 173 | |
[INFO] [stdout] 174 | | loop {
[INFO] [stdout] ... |
[INFO] [stdout] 190 | | }
[INFO] [stdout] 191 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:166:5
[INFO] [stdout] |
[INFO] [stdout] 166 | / impl<
[INFO] [stdout] 167 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 168 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 169 | | > Permutation for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 191 | | }
[INFO] [stdout] 192 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:171:7
[INFO] [stdout] |
[INFO] [stdout] 171 | / fn permutation(&self, mut input: Input) -> IResult {
[INFO] [stdout] 172 | | let mut res = permutation_init!((), $($name),+);
[INFO] [stdout] 173 | |
[INFO] [stdout] 174 | | loop {
[INFO] [stdout] ... |
[INFO] [stdout] 190 | | }
[INFO] [stdout] 191 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:166:5
[INFO] [stdout] |
[INFO] [stdout] 166 | / impl<
[INFO] [stdout] 167 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 168 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 169 | | > Permutation for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 191 | | }
[INFO] [stdout] 192 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:171:7
[INFO] [stdout] |
[INFO] [stdout] 171 | / fn permutation(&self, mut input: Input) -> IResult {
[INFO] [stdout] 172 | | let mut res = permutation_init!((), $($name),+);
[INFO] [stdout] 173 | |
[INFO] [stdout] 174 | | loop {
[INFO] [stdout] ... |
[INFO] [stdout] 190 | | }
[INFO] [stdout] 191 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:166:5
[INFO] [stdout] |
[INFO] [stdout] 166 | / impl<
[INFO] [stdout] 167 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 168 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 169 | | > Permutation for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 191 | | }
[INFO] [stdout] 192 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:171:7
[INFO] [stdout] |
[INFO] [stdout] 171 | / fn permutation(&self, mut input: Input) -> IResult {
[INFO] [stdout] 172 | | let mut res = permutation_init!((), $($name),+);
[INFO] [stdout] 173 | |
[INFO] [stdout] 174 | | loop {
[INFO] [stdout] ... |
[INFO] [stdout] 190 | | }
[INFO] [stdout] 191 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:166:5
[INFO] [stdout] |
[INFO] [stdout] 166 | / impl<
[INFO] [stdout] 167 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 168 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 169 | | > Permutation for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 191 | | }
[INFO] [stdout] 192 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:171:7
[INFO] [stdout] |
[INFO] [stdout] 171 | / fn permutation(&self, mut input: Input) -> IResult {
[INFO] [stdout] 172 | | let mut res = permutation_init!((), $($name),+);
[INFO] [stdout] 173 | |
[INFO] [stdout] 174 | | loop {
[INFO] [stdout] ... |
[INFO] [stdout] 190 | | }
[INFO] [stdout] 191 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:166:5
[INFO] [stdout] |
[INFO] [stdout] 166 | / impl<
[INFO] [stdout] 167 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 168 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 169 | | > Permutation for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 191 | | }
[INFO] [stdout] 192 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:171:7
[INFO] [stdout] |
[INFO] [stdout] 171 | / fn permutation(&self, mut input: Input) -> IResult {
[INFO] [stdout] 172 | | let mut res = permutation_init!((), $($name),+);
[INFO] [stdout] 173 | |
[INFO] [stdout] 174 | | loop {
[INFO] [stdout] ... |
[INFO] [stdout] 190 | | }
[INFO] [stdout] 191 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:166:5
[INFO] [stdout] |
[INFO] [stdout] 166 | / impl<
[INFO] [stdout] 167 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 168 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 169 | | > Permutation for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 191 | | }
[INFO] [stdout] 192 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:171:7
[INFO] [stdout] |
[INFO] [stdout] 171 | / fn permutation(&self, mut input: Input) -> IResult {
[INFO] [stdout] 172 | | let mut res = permutation_init!((), $($name),+);
[INFO] [stdout] 173 | |
[INFO] [stdout] 174 | | loop {
[INFO] [stdout] ... |
[INFO] [stdout] 190 | | }
[INFO] [stdout] 191 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:166:5
[INFO] [stdout] |
[INFO] [stdout] 166 | / impl<
[INFO] [stdout] 167 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 168 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 169 | | > Permutation for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 191 | | }
[INFO] [stdout] 192 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:171:7
[INFO] [stdout] |
[INFO] [stdout] 171 | / fn permutation(&self, mut input: Input) -> IResult {
[INFO] [stdout] 172 | | let mut res = permutation_init!((), $($name),+);
[INFO] [stdout] 173 | |
[INFO] [stdout] 174 | | loop {
[INFO] [stdout] ... |
[INFO] [stdout] 190 | | }
[INFO] [stdout] 191 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:166:5
[INFO] [stdout] |
[INFO] [stdout] 166 | / impl<
[INFO] [stdout] 167 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 168 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 169 | | > Permutation for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 191 | | }
[INFO] [stdout] 192 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/branch/mod.rs:171:7
[INFO] [stdout] |
[INFO] [stdout] 171 | / fn permutation(&self, mut input: Input) -> IResult {
[INFO] [stdout] 172 | | let mut res = permutation_init!((), $($name),+);
[INFO] [stdout] 173 | |
[INFO] [stdout] 174 | | loop {
[INFO] [stdout] ... |
[INFO] [stdout] 190 | | }
[INFO] [stdout] 191 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 263 | permutation_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L, FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:227:1
[INFO] [stdout] |
[INFO] [stdout] 227 | / impl, F: Fn(Input) -> IResult > Tuple for (F,) {
[INFO] [stdout] 228 | | fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 229 | | self.0(input).map(|(i,o)| (i, (o,)))
[INFO] [stdout] 230 | | }
[INFO] [stdout] 231 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:228:4
[INFO] [stdout] |
[INFO] [stdout] 228 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 229 | | self.0(input).map(|(i,o)| (i, (o,)))
[INFO] [stdout] 230 | | }
[INFO] [stdout] | |____^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:249:5
[INFO] [stdout] |
[INFO] [stdout] 249 | / impl<
[INFO] [stdout] 250 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 251 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 252 | | > Tuple for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 257 | | }
[INFO] [stdout] 258 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:254:7
[INFO] [stdout] |
[INFO] [stdout] 254 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 255 | | tuple_trait_inner!(0, self, input, (), $($name)+)
[INFO] [stdout] 256 | |
[INFO] [stdout] 257 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:249:5
[INFO] [stdout] |
[INFO] [stdout] 249 | / impl<
[INFO] [stdout] 250 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 251 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 252 | | > Tuple for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 257 | | }
[INFO] [stdout] 258 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:254:7
[INFO] [stdout] |
[INFO] [stdout] 254 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 255 | | tuple_trait_inner!(0, self, input, (), $($name)+)
[INFO] [stdout] 256 | |
[INFO] [stdout] 257 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:249:5
[INFO] [stdout] |
[INFO] [stdout] 249 | / impl<
[INFO] [stdout] 250 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 251 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 252 | | > Tuple for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 257 | | }
[INFO] [stdout] 258 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:254:7
[INFO] [stdout] |
[INFO] [stdout] 254 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 255 | | tuple_trait_inner!(0, self, input, (), $($name)+)
[INFO] [stdout] 256 | |
[INFO] [stdout] 257 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:249:5
[INFO] [stdout] |
[INFO] [stdout] 249 | / impl<
[INFO] [stdout] 250 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 251 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 252 | | > Tuple for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 257 | | }
[INFO] [stdout] 258 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:254:7
[INFO] [stdout] |
[INFO] [stdout] 254 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 255 | | tuple_trait_inner!(0, self, input, (), $($name)+)
[INFO] [stdout] 256 | |
[INFO] [stdout] 257 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:249:5
[INFO] [stdout] |
[INFO] [stdout] 249 | / impl<
[INFO] [stdout] 250 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 251 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 252 | | > Tuple for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 257 | | }
[INFO] [stdout] 258 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:254:7
[INFO] [stdout] |
[INFO] [stdout] 254 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 255 | | tuple_trait_inner!(0, self, input, (), $($name)+)
[INFO] [stdout] 256 | |
[INFO] [stdout] 257 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:249:5
[INFO] [stdout] |
[INFO] [stdout] 249 | / impl<
[INFO] [stdout] 250 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 251 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 252 | | > Tuple for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 257 | | }
[INFO] [stdout] 258 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:254:7
[INFO] [stdout] |
[INFO] [stdout] 254 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 255 | | tuple_trait_inner!(0, self, input, (), $($name)+)
[INFO] [stdout] 256 | |
[INFO] [stdout] 257 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:249:5
[INFO] [stdout] |
[INFO] [stdout] 249 | / impl<
[INFO] [stdout] 250 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 251 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 252 | | > Tuple for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 257 | | }
[INFO] [stdout] 258 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:254:7
[INFO] [stdout] |
[INFO] [stdout] 254 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 255 | | tuple_trait_inner!(0, self, input, (), $($name)+)
[INFO] [stdout] 256 | |
[INFO] [stdout] 257 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:249:5
[INFO] [stdout] |
[INFO] [stdout] 249 | / impl<
[INFO] [stdout] 250 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 251 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 252 | | > Tuple for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 257 | | }
[INFO] [stdout] 258 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:254:7
[INFO] [stdout] |
[INFO] [stdout] 254 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 255 | | tuple_trait_inner!(0, self, input, (), $($name)+)
[INFO] [stdout] 256 | |
[INFO] [stdout] 257 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:249:5
[INFO] [stdout] |
[INFO] [stdout] 249 | / impl<
[INFO] [stdout] 250 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 251 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 252 | | > Tuple for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 257 | | }
[INFO] [stdout] 258 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:254:7
[INFO] [stdout] |
[INFO] [stdout] 254 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 255 | | tuple_trait_inner!(0, self, input, (), $($name)+)
[INFO] [stdout] 256 | |
[INFO] [stdout] 257 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:249:5
[INFO] [stdout] |
[INFO] [stdout] 249 | / impl<
[INFO] [stdout] 250 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 251 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 252 | | > Tuple for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 257 | | }
[INFO] [stdout] 258 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:254:7
[INFO] [stdout] |
[INFO] [stdout] 254 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 255 | | tuple_trait_inner!(0, self, input, (), $($name)+)
[INFO] [stdout] 256 | |
[INFO] [stdout] 257 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:249:5
[INFO] [stdout] |
[INFO] [stdout] 249 | / impl<
[INFO] [stdout] 250 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 251 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 252 | | > Tuple for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 257 | | }
[INFO] [stdout] 258 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:254:7
[INFO] [stdout] |
[INFO] [stdout] 254 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 255 | | tuple_trait_inner!(0, self, input, (), $($name)+)
[INFO] [stdout] 256 | |
[INFO] [stdout] 257 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:249:5
[INFO] [stdout] |
[INFO] [stdout] 249 | / impl<
[INFO] [stdout] 250 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 251 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 252 | | > Tuple for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 257 | | }
[INFO] [stdout] 258 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:254:7
[INFO] [stdout] |
[INFO] [stdout] 254 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 255 | | tuple_trait_inner!(0, self, input, (), $($name)+)
[INFO] [stdout] 256 | |
[INFO] [stdout] 257 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:249:5
[INFO] [stdout] |
[INFO] [stdout] 249 | / impl<
[INFO] [stdout] 250 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 251 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 252 | | > Tuple for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 257 | | }
[INFO] [stdout] 258 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:254:7
[INFO] [stdout] |
[INFO] [stdout] 254 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 255 | | tuple_trait_inner!(0, self, input, (), $($name)+)
[INFO] [stdout] 256 | |
[INFO] [stdout] 257 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:249:5
[INFO] [stdout] |
[INFO] [stdout] 249 | / impl<
[INFO] [stdout] 250 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 251 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 252 | | > Tuple for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 257 | | }
[INFO] [stdout] 258 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:254:7
[INFO] [stdout] |
[INFO] [stdout] 254 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 255 | | tuple_trait_inner!(0, self, input, (), $($name)+)
[INFO] [stdout] 256 | |
[INFO] [stdout] 257 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:249:5
[INFO] [stdout] |
[INFO] [stdout] 249 | / impl<
[INFO] [stdout] 250 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 251 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 252 | | > Tuple for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 257 | | }
[INFO] [stdout] 258 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:254:7
[INFO] [stdout] |
[INFO] [stdout] 254 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 255 | | tuple_trait_inner!(0, self, input, (), $($name)+)
[INFO] [stdout] 256 | |
[INFO] [stdout] 257 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:249:5
[INFO] [stdout] |
[INFO] [stdout] 249 | / impl<
[INFO] [stdout] 250 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 251 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 252 | | > Tuple for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 257 | | }
[INFO] [stdout] 258 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:254:7
[INFO] [stdout] |
[INFO] [stdout] 254 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 255 | | tuple_trait_inner!(0, self, input, (), $($name)+)
[INFO] [stdout] 256 | |
[INFO] [stdout] 257 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:249:5
[INFO] [stdout] |
[INFO] [stdout] 249 | / impl<
[INFO] [stdout] 250 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 251 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 252 | | > Tuple for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 257 | | }
[INFO] [stdout] 258 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:254:7
[INFO] [stdout] |
[INFO] [stdout] 254 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 255 | | tuple_trait_inner!(0, self, input, (), $($name)+)
[INFO] [stdout] 256 | |
[INFO] [stdout] 257 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:249:5
[INFO] [stdout] |
[INFO] [stdout] 249 | / impl<
[INFO] [stdout] 250 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 251 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 252 | | > Tuple for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 257 | | }
[INFO] [stdout] 258 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:254:7
[INFO] [stdout] |
[INFO] [stdout] 254 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 255 | | tuple_trait_inner!(0, self, input, (), $($name)+)
[INFO] [stdout] 256 | |
[INFO] [stdout] 257 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:249:5
[INFO] [stdout] |
[INFO] [stdout] 249 | / impl<
[INFO] [stdout] 250 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 251 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 252 | | > Tuple for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 257 | | }
[INFO] [stdout] 258 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:254:7
[INFO] [stdout] |
[INFO] [stdout] 254 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 255 | | tuple_trait_inner!(0, self, input, (), $($name)+)
[INFO] [stdout] 256 | |
[INFO] [stdout] 257 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:249:5
[INFO] [stdout] |
[INFO] [stdout] 249 | / impl<
[INFO] [stdout] 250 | | Input: Clone, $($ty),+ , Error: ParseError,
[INFO] [stdout] 251 | | $($name: Fn(Input) -> IResult),+
[INFO] [stdout] 252 | | > Tuple for ( $($name),+ ) {
[INFO] [stdout] ... |
[INFO] [stdout] 257 | | }
[INFO] [stdout] 258 | | }
[INFO] [stdout] | |_____^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/sequence/mod.rs:254:7
[INFO] [stdout] |
[INFO] [stdout] 254 | / fn parse(&self, input: Input) -> IResult {
[INFO] [stdout] 255 | | tuple_trait_inner!(0, self, input, (), $($name)+)
[INFO] [stdout] 256 | |
[INFO] [stdout] 257 | | }
[INFO] [stdout] | |_______^
[INFO] [stdout] ...
[INFO] [stdout] 280 | / tuple_trait!(FnA A, FnB B, FnC C, FnD D, FnE E, FnF F, FnG G, FnH H, FnI I, FnJ J, FnK K, FnL L,
[INFO] [stdout] 281 | | FnM M, FnN N, FnO O, FnP P, FnQ Q, FnR R, FnS S, FnT T, FnU U);
[INFO] [stdout] | |_________________________________________________________________- in this macro invocation
[INFO] [stdout] |
[INFO] [stdout] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/combinator/mod.rs:682:1
[INFO] [stdout] |
[INFO] [stdout] 682 | / impl<'a, Input ,Output ,Error, F> core::iter::Iterator for &'a mut ParserIterator
[INFO] [stdout] 683 | | where
[INFO] [stdout] 684 | | F: Fn(Input) -> IResult,
[INFO] [stdout] 685 | | Input: Clone
[INFO] [stdout] ... |
[INFO] [stdout] 714 | | }
[INFO] [stdout] 715 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/combinator/mod.rs:687:3
[INFO] [stdout] |
[INFO] [stdout] 687 | type Item = Output;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/combinator/mod.rs:689:3
[INFO] [stdout] |
[INFO] [stdout] 689 | / fn next(&mut self) -> Option {
[INFO] [stdout] 690 | | if let State::Running = self.state {
[INFO] [stdout] 691 | | let input = self.input.clone();
[INFO] [stdout] 692 | |
[INFO] [stdout] ... |
[INFO] [stdout] 713 | | }
[INFO] [stdout] 714 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/internal.rs:123:1
[INFO] [stdout] |
[INFO] [stdout] 123 | impl Eq for Err {}
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/internal.rs:129:1
[INFO] [stdout] |
[INFO] [stdout] 129 | / impl fmt::Display for Err
[INFO] [stdout] 130 | | where
[INFO] [stdout] 131 | | E: fmt::Debug,
[INFO] [stdout] 132 | | {
[INFO] [stdout] ... |
[INFO] [stdout] 140 | | }
[INFO] [stdout] 141 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/internal.rs:133:3
[INFO] [stdout] |
[INFO] [stdout] 133 | / fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
[INFO] [stdout] 134 | | match self {
[INFO] [stdout] 135 | | Err::Incomplete(Needed::Size(u)) => write!(f, "Parsing requires {} bytes/chars", u),
[INFO] [stdout] 136 | | Err::Incomplete(Needed::Unknown) => write!(f, "Parsing requires more data"),
[INFO] [stdout] ... |
[INFO] [stdout] 139 | | }
[INFO] [stdout] 140 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/internal.rs:147:1
[INFO] [stdout] |
[INFO] [stdout] 147 | / impl Error for Err
[INFO] [stdout] 148 | | where
[INFO] [stdout] 149 | | E: fmt::Debug,
[INFO] [stdout] 150 | | {
[INFO] [stdout] ... |
[INFO] [stdout] 153 | | }
[INFO] [stdout] 154 | | }
[INFO] [stdout] | |_^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: missing code example in this documentation
[INFO] [stdout] --> src/internal.rs:151:3
[INFO] [stdout] |
[INFO] [stdout] 151 | / fn source(&self) -> Option<&(dyn Error + 'static)> {
[INFO] [stdout] 152 | | None // no underlying error
[INFO] [stdout] 153 | | }
[INFO] [stdout] | |___^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: 566 warnings emitted
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 11.27s
[INFO] running `Command { std: "docker" "inspect" "a946560c00e836112b44fb86dd593a535c23810a0cc1c623ed27cca6b670af58", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "a946560c00e836112b44fb86dd593a535c23810a0cc1c623ed27cca6b670af58", kill_on_drop: false }`
[INFO] [stdout] a946560c00e836112b44fb86dd593a535c23810a0cc1c623ed27cca6b670af58