pub trait Options {
type Encoding;
const VISITOR_TYPE: VisitorType = _;
}Expand description
Determines how exactly BytesWrapper should wrap the underlying type.
Provided Associated Constants§
Sourceconst VISITOR_TYPE: VisitorType = _
const VISITOR_TYPE: VisitorType = _
During deserialization, how should the byte array be visited?
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.