Trait bincode::config::Config

source ·
pub trait Config:
    InternalEndianConfig
    + 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 + InternalIntEncodingConfig + InternalLimitConfig + Copy + Clone,