pub trait BitPieceHasMutRef: BitPiece {
type MutRef<'s>: BitPieceMutRef<'s>;
}Required Associated Types§
Sourcetype MutRef<'s>: BitPieceMutRef<'s>
type MutRef<'s>: BitPieceMutRef<'s>
the type used to represent a mutable reference to this type inside another bitpiece.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".