Trait vkrs::api::Request [] [src]

pub trait Request {
    type Response: Deserialize;
    fn method_name() -> &'static str;
    fn to_query_string(&self) -> String;

    fn permissions() -> Permissions { ... }
    fn to_url(&self) -> Url { ... }
}

Trait for things that can be posted to VK API directly

Associated Types

Required Methods

Provided Methods

Implementors