pub fn content_deserialize_async<R: FnOnce(Result<Value, Error>) + 'static>(
stream: &impl IsA<InputStream>,
mime_type: &str,
type_: Type,
io_priority: Priority,
cancellable: Option<&impl IsA<Cancellable>>,
callback: R,
)
Expand description
Read content from the given input stream and deserialize it, asynchronously.
The default I/O priority is G_PRIORITY_DEFAULT
(i.e. 0), and lower numbers
indicate a higher priority.
§stream
a GInputStream
to read the serialized content from
§mime_type
the mime type to deserialize from
§type_
the GType to deserialize from
§io_priority
the I/O priority of the operation
§cancellable
optional GCancellable
object
§callback
callback to call when the operation is done