diff options
author | Wedson Almeida Filho <[email protected]> | 2022-11-10 17:41:39 +0100 |
---|---|---|
committer | Miguel Ojeda <[email protected]> | 2022-12-04 01:59:16 +0100 |
commit | ba20915bae49024dab6ee582abdd4cd8944a3e55 (patch) | |
tree | 58941383549263a3d2e39312d5c339a16a4296c4 /drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c | |
parent | 0f595bab9d1c1a10c6ab5ff3f9140cfc26600349 (diff) |
rust: types: add `Either` type
Introduce the new `types` module of the `kernel` crate with
`Either` as its first type.
`Either<L, R>` is a sum type that always holds either a value
of type `L` (`Left` variant) or `R` (`Right` variant).
For instance:
struct Executor {
queue: Either<BoxedQueue, &'static Queue>,
}
Signed-off-by: Wedson Almeida Filho <[email protected]>
Reviewed-by: Wei Liu <[email protected]>
[Reworded, adapted for upstream and applied latest changes]
Signed-off-by: Miguel Ojeda <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c')
0 files changed, 0 insertions, 0 deletions