runtime
2.0.0-alpha05
common
runtime
/
app.cash.sqldelight.db
/
QueryResult
Query
Result
interface
QueryResult
<
T
>
Types
Functions
Properties
Inheritors
Types
Async
Value
Link copied to clipboard
class
AsyncValue
<
T
>
(
getter
:
suspend
(
)
->
T
)
:
QueryResult
<
T
>
Unit
Link copied to clipboard
object
Unit
:
QueryResult
<
Unit
>
A
QueryResult
representation of a Kotlin
Unit
.
Value
Link copied to clipboard
data
class
Value
<
T
>
(
val
value
:
T
)
:
QueryResult
<
T
>
Functions
await
Link copied to clipboard
abstract
suspend
fun
await
(
)
:
T
Properties
value
Link copied to clipboard
open
val
value
:
T
Inheritors
Value
Link copied to clipboard
AsyncValue
Link copied to clipboard
Unit
Link copied to clipboard