1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
use crate::{AsBinary, Hash, StellarSdkError};

pub trait IntoHash {
    fn into_hash(self) -> Result<Hash, StellarSdkError>;
}

impl IntoHash for Hash {
    fn into_hash(self) -> Result<Hash, StellarSdkError> {
        Ok(self)
    }
}

impl<T: AsRef<[u8]>> IntoHash for AsBinary<T> {
    fn into_hash(self) -> Result<Hash, StellarSdkError> {
        self.as_binary()
    }
}