fast_vk 0.5.1

Relatively low-level VK API library designed for millions requests per second
Documentation
1
2
3
4
5
6
7
8
use super::{ResultSender, Method};

/// Message that sends to [`Worker`]
#[derive(Debug)]
pub enum Message {
    NewMethod(Method, ResultSender),
    Terminate,
}