hiero-sdk 0.38.1

The SDK for interacting with Hedera Hashgraph.
Documentation
1
2
3
4
5
6
7
// SPDX-License-Identifier: Apache-2.0

// not happy about needing this.
/// Downcast from one type to another.
pub trait DowncastOwned<T>: Sized {
    fn downcast_owned(self) -> Result<T, Self>;
}