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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/*
* Copyright 2018 The Starlark in Rust Authors.
* Copyright (c) Facebook, Inc. and its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
//! This mod defines utilities to easily create Rust values as Starlark values.
use Either;
use crateStarlarkTypeRepr;
use crateFrozenHeap;
use crateFrozenStringValue;
use crateFrozenValue;
use crateHeap;
use crateStringValue;
use crateValue;
/// Trait for things that can be created on a [`Heap`] producing a [`Value`].
///
/// Note, this trait does not represent Starlark types.
/// For example, this trait is implemented for `char`,
/// but there's no Starlark type for `char`, this trait
/// is implemented for `char` to construct Starlark `str`.
///
/// For types that implement [`crate::values::StarlarkValue`] a typical implementation
/// will probably call either [`Heap::alloc_simple`] or [`Heap::alloc_complex`],
/// e.g.
///
/// ```
/// # use allocative::Allocative;
/// # use starlark::any::ProvidesStaticType;
/// # use starlark::values::{AllocValue, Heap, NoSerialize, starlark_value, StarlarkValue, Value};
///
/// #[derive(Debug, derive_more::Display, Allocative, NoSerialize, ProvidesStaticType)]
/// struct MySimpleValue;
///
/// #[starlark_value(type = "MySimpleValue", UnpackValue, StarlarkTypeRepr)]
/// impl<'v> StarlarkValue<'v> for MySimpleValue {}
///
/// impl<'v> AllocValue<'v> for MySimpleValue {
/// fn alloc_value(self, heap: &'v Heap) -> Value<'v> {
/// heap.alloc_simple(self)
/// }
/// }
/// ```
///
/// # Derive
///
/// `AllocValue` can be derived for enums, like this:
///
/// ```
/// use starlark::values::type_repr::StarlarkTypeRepr;
/// use starlark::values::AllocValue;
///
/// #[derive(StarlarkTypeRepr, AllocValue)]
/// enum AllocIntOrStr {
/// Int(i32),
/// Str(String),
/// }
/// ```
/// Type which allocates a string.
/// Trait for things that can be allocated on a [`FrozenHeap`] producing a [`FrozenValue`].
///
/// # Derive
///
/// `AllocFrozenValue` can be derived for enums, like this:
///
/// ```
/// use starlark::values::type_repr::StarlarkTypeRepr;
/// use starlark::values::AllocFrozenValue;
///
/// #[derive(StarlarkTypeRepr, AllocFrozenValue)]
/// enum AllocIntOrStr {
/// Int(i32),
/// Str(String),
/// }
/// ```
/// Type which allocates a string.