pub trait BitStringLike {
// Required method
fn as_bit_string(&self) -> BitStringRef<'_>;
}Expand description
BitStringLike marks object that will act like a BitString.
It will allow to get a BitStringRef that points back to the underlying bytes.