// Copyright (c) Zefchain Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
//! Conversions with zero-extension.
/// Converts from a type into a wider `Target` type by zero-extending the most significant bits.
pubtraitZeroExtend<Target> {/// Converts into the `Target` type by zero-extending the most significant bits.
fnzero_extend(self)-> Target;}implZeroExtend<i64>fori32{fnzero_extend(self)->i64{selfasu32asu64asi64}}