1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
use ;
/// A trait for types that can be optionally parsed from a `ParseStream`.
///
/// This trait provides a default implementation of `parse_option` that
/// uses the `peek` method to check if the type should be parsed.
///
/// # Example
///
/// ```rust
/// use syn::{Token, parse::{Parse, ParseStream}};
/// use kosame_dsl::parse_option::ParseOption;
///
/// struct MyStruct {
/// token: Token![as],
/// // ...
/// }
///
/// impl ParseOption for MyStruct {
/// fn peek(input: ParseStream) -> bool {
/// input.peek(Token![as])
/// }
/// }
///
/// impl Parse for MyStruct {
/// fn parse(input: ParseStream) -> syn::Result<Self> {
/// // ... parsing logic
/// # Ok(MyStruct { token: input.parse()? })
/// }
/// }
/// ```