Pestinskaya
Pestinskaya (Russian: Пестинская) is a rural locality (a village) in Yavengskoye Rural Settlement, Vozhegodsky District, Vologda Oblast, Russia. The population was 1 as of 2002.[2]
Pestinskaya Пестинская | |
---|---|
Village | |
Pestinskaya Pestinskaya | |
Coordinates: 60°33′N 40°18′E[1] | |
Country | Russia |
Region | Vologda Oblast |
District | Vozhegodsky District |
Time zone | UTC+3:00 |
Geography
The distance to Vozhega is 24 km, to Baza is 11 km. Fominskaya, Savinskaya, Bykovskaya are the nearest rural localities.
gollark: ```rustuse std::collections::HashMap;use serde_cbor::Value;use chrono;use std::collections::HashSet;use actix::prelude::*;#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Hash, Clone)]#[serde(untagged)]pub enum Channel { Numeric(i64), Named(String)}#[derive(Serialize, Deserialize, Debug, Clone, Message)]pub struct RawMsg { pub channel: Channel, #[serde(flatten)] pub meta: HashMap<String, Value>, pub message: Value}#[derive(Serialize, Deserialize, Debug, Clone, Message)]pub struct Msg { pub channel: Channel, #[serde(flatten)] pub meta: HashMap<String, Value>, pub message: Value, pub timestamp: chrono::DateTime<chrono::Utc>}pub fn complete(raw: RawMsg) -> Msg { Msg { channel: raw.channel, meta: raw.meta, timestamp: chrono::Utc::now(), message: raw.message }}#[derive(Serialize, Deserialize, Debug)]#[serde(rename_all = "snake_case")]pub enum MessageFromClient { Open(Channel), Close(Channel), Message(RawMsg), Query}#[derive(Serialize)]#[serde(rename_all = "snake_case")]pub enum MessageToClient<'a> { Message(Msg), QueryResult { channels: &'a HashSet<Channel> }}```Skynet!
gollark: No, actually, HQ9+ is better.
gollark: And cratesio squatting.
gollark: I mean, unless you count the borrow checker being unable to properly distinguish between access to, I don't know, parts of a vector.
gollark: Actually, Lua has flaws, flawlessness is unique to Rust.
References
- Карта Вожегодского района Вологодской области
- Данные переписи 2002 года: таблица 2С. М.: Федеральная служба государственной статистики, 2004.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.