Lines Matching +full:github +full:- +full:token
3 [Build Status]: https://img.shields.io/github/actions/workflow/status/serde-rs/test/ci.yml?branch=m…
4 [actions]: https://github.com/serde-rs/test/actions?query=branch%3Amaster
16 `serde_test` provides a [`Token`] abstraction which corresponds roughly to
25 Here is an example from the [`linked-hash-map`] crate.
27 [`linked-hash-map`]: https://github.com/contain-rs/linked-hash-map
31 use serde_test::{assert_tokens, Token};
40 Token::Map { len: Some(0) },
41 Token::MapEnd,
56 Token::Map { len: Some(3) },
57 Token::Char('b'),
58 Token::I32(20),
59 Token::Char('a'),
60 Token::I32(10),
61 Token::Char('c'),
62 Token::I32(30),
63 Token::MapEnd,
74 Licensed under either of <a href="LICENSE-APACHE">Apache License, Version
75 2.0</a> or <a href="LICENSE-MIT">MIT license</a> at your option.
82 for inclusion in this crate by you, as defined in the Apache-2.0 license, shall