pub trait ToRow {
fn to_row(self) -> Vec<Value>;
}
Required Methods
Implementors
impl<'a, T: ToRow + Clone> ToRow for &'a T
impl ToRow for Vec<Value>
impl<'a> ToRow for &'a [&'a ToValue]
impl ToRow for ()
impl<A: IntoValue> ToRow for (A,)
impl<A: IntoValue, B: IntoValue> ToRow for (A, B)
impl<A: IntoValue, B: IntoValue, C: IntoValue> ToRow for (A, B, C)
impl<A: IntoValue, B: IntoValue, C: IntoValue, D: IntoValue> ToRow for (A, B, C, D)
impl<A: IntoValue, B: IntoValue, C: IntoValue, D: IntoValue, E: IntoValue> ToRow for (A, B, C, D, E)
impl<A: IntoValue, B: IntoValue, C: IntoValue, D: IntoValue, E: IntoValue, F: IntoValue> ToRow for (A, B, C, D, E, F)
impl<A: IntoValue, B: IntoValue, C: IntoValue, D: IntoValue, E: IntoValue, F: IntoValue, G: IntoValue> ToRow for (A, B, C, D, E, F, G)
impl<A: IntoValue, B: IntoValue, C: IntoValue, D: IntoValue, E: IntoValue, F: IntoValue, G: IntoValue, H: IntoValue> ToRow for (A, B, C, D, E, F, G, H)
impl<A: IntoValue, B: IntoValue, C: IntoValue, D: IntoValue, E: IntoValue, F: IntoValue, G: IntoValue, H: IntoValue, I: IntoValue> ToRow for (A, B, C, D, E, F, G, H, I)
impl<A: IntoValue, B: IntoValue, C: IntoValue, D: IntoValue, E: IntoValue, F: IntoValue, G: IntoValue, H: IntoValue, I: IntoValue, J: IntoValue> ToRow for (A, B, C, D, E, F, G, H, I, J)
impl<A: IntoValue, B: IntoValue, C: IntoValue, D: IntoValue, E: IntoValue, F: IntoValue, G: IntoValue, H: IntoValue, I: IntoValue, J: IntoValue, K: IntoValue> ToRow for (A, B, C, D, E, F, G, H, I, J, K)
impl<A: IntoValue, B: IntoValue, C: IntoValue, D: IntoValue, E: IntoValue, F: IntoValue, G: IntoValue, H: IntoValue, I: IntoValue, J: IntoValue, K: IntoValue, L: IntoValue> ToRow for (A, B, C, D, E, F, G, H, I, J, K, L)
Keyboard shortcuts
- ?
- Show this help dialog
- S
- Focus the search field
- ⇤
- Move up in search results
- ⇥
- Move down in search results
- ⏎
- Go to active search result
Search tricks
Prefix searches with a type followed by a colon (e.g.
fn:
) to restrict the search to a given type.
Accepted types are: fn
, mod
,
struct
, enum
,
trait
, typedef
(or
tdef
).
Search functions by type signature (e.g.
vec -> usize
)