Skip to content

Instantly share code, notes, and snippets.

@KodrAus
KodrAus / serde-byte-array.md
Last active November 4, 2021 05:28
Serializing fixed-size arrays in serde

Summary

Add the following method to Serializer:

fn serialize_byte_array<const N: usize>(self, bytes: &[u8; N]) -> Result<Self::Ok, Self::Error> {
    self.serialize_bytes(bytes)
}
@KodrAus
KodrAus / main.rs
Last active November 4, 2021 04:21
Sizes of bytes vs tuples in some serde binary formats
#![feature(test)]
extern crate test;
use serde::{Serialize, Serializer};
pub struct Bytes([u8; 16]);
pub struct Tuple([u8; 16]);
@KodrAus
KodrAus / find_msbuild.rs
Created April 11, 2020 01:30
Find `msbuild` using `vswhere`
use std::path::PathBuf;
use std::process::Command;
use std::str;
let mut msbuild = PathBuf::from("msbuild");
let check_msbuild = Command::new(msbuild)
.arg("--version")
.output()
.is_ok();
#![feature(unsize)]
use std::{
any::TypeId,
marker::Unsize,
fmt,
};
enum Dyn<'v, T: ?Sized, TStatic: ?Sized>
{
@KodrAus
KodrAus / PureDI.cs
Last active January 20, 2020 07:02 — forked from davidfowl/PureDI.cs
DI under the hood. This is what DI containers automate for you
using System;
using System.Threading;
namespace PureDI
{
class Program
{
static void Main(string[] args)
{
// Create the singletons once
@KodrAus
KodrAus / examples.md
Last active July 23, 2019 05:37
Finding my examples
@KodrAus
KodrAus / tracing_log.rs
Last active June 29, 2020 19:11
Converting between `tracing` key values and `log` key values
use std::fmt;
use log::kv::{self, Source, value::{self, Fill}};
use tracing::{Value, Field, field::{self, Visit}};
#[doc(hidden)]
pub struct LogField<'kvs>(&'kvs Field, &'kvs dyn Value);
impl fmt::Debug for LogField<'_> {
@KodrAus
KodrAus / Replace Concrete impl with Blanket.md
Created January 25, 2019 01:09
Using cargo features to replace a set of concrete impls with a blanket one

Using cargo features to replace a set of concrete trait impls with a blanket one

There's subtlety involved in doing this so I've just dumped this out from another document in case I ever need to remember what they were in the future.

value::Visit

The Visit trait can be treated like a lightweight subset of serde::Serialize that can interoperate with serde, without necessarily depending on it. It can't be implemented manually:

/// A type that can be converted into a borrowed value.
@KodrAus
KodrAus / maybe_initialized.rs
Created October 31, 2018 21:52
MaybeInitialized
union MaybeInitialized<T> {
initialized: T,
uninitialized: (),
}
@KodrAus
KodrAus / properties.rs
Last active June 11, 2018 07:51
Properties Macro
/*!
This example demonstrates a potential macro for capturing log properties.
The macro uses a syntax that's _similar_ to struct literals. The idea is to support
extensions to the way properties are captured using attributes.
There's a bit of a misalignment between how formatting is communicated in the log
message and the contextual properties, but they are a bit different. Args are slurped
up into the message using the formatting API whereas properties are exposed as data.