Trait bincode::config::Config

source ·
pub trait Config: InternalEndianConfig + InternalArrayLengthConfig + InternalIntEncodingConfig + InternalLimitConfig + Copy + Clone { }
Expand description

Indicates a type is valid for controlling the bincode configuration

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> Config for T
where T: InternalEndianConfig + InternalArrayLengthConfig + InternalIntEncodingConfig + InternalLimitConfig + Copy + Clone,