pub struct HashString(/* private fields */);Trait Implementations§
Source§impl Clone for HashString
impl Clone for HashString
Source§fn clone(&self) -> HashString
fn clone(&self) -> HashString
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HashString
impl Debug for HashString
Source§impl<'de> Deserialize<'de> for HashString
impl<'de> Deserialize<'de> for HashString
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<WrappedActionHash> for HashString
impl From<WrappedActionHash> for HashString
Source§fn from(wrapped_action_hash: WrappedActionHash) -> Self
fn from(wrapped_action_hash: WrappedActionHash) -> Self
Converts to this type from the input type.
Source§impl From<WrappedAgentPubKey> for HashString
impl From<WrappedAgentPubKey> for HashString
Source§fn from(wrapped_agent_pub_key: WrappedAgentPubKey) -> Self
fn from(wrapped_agent_pub_key: WrappedAgentPubKey) -> Self
Converts to this type from the input type.
Source§impl From<WrappedDnaHash> for HashString
impl From<WrappedDnaHash> for HashString
Source§fn from(wrapped_entry_hash: WrappedDnaHash) -> Self
fn from(wrapped_entry_hash: WrappedDnaHash) -> Self
Converts to this type from the input type.
Source§impl From<WrappedEntryHash> for HashString
impl From<WrappedEntryHash> for HashString
Source§fn from(wrapped_entry_hash: WrappedEntryHash) -> Self
fn from(wrapped_entry_hash: WrappedEntryHash) -> Self
Converts to this type from the input type.
Source§impl PartialEq for HashString
impl PartialEq for HashString
Source§impl Serialize for HashString
impl Serialize for HashString
Source§impl TryFrom<&HashString> for SerializedBytes
impl TryFrom<&HashString> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(t: &HashString) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &HashString) -> Result<SerializedBytes, SerializedBytesError>
Performs the conversion.
Source§impl TryFrom<HashString> for SerializedBytes
impl TryFrom<HashString> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(t: HashString) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: HashString) -> Result<SerializedBytes, SerializedBytesError>
Performs the conversion.
Source§impl TryFrom<HashString> for WrappedActionHash
impl TryFrom<HashString> for WrappedActionHash
Source§impl TryFrom<HashString> for WrappedAgentPubKey
impl TryFrom<HashString> for WrappedAgentPubKey
Source§impl TryFrom<HashString> for WrappedDnaHash
impl TryFrom<HashString> for WrappedDnaHash
Source§impl TryFrom<HashString> for WrappedEntryHash
impl TryFrom<HashString> for WrappedEntryHash
Source§impl TryFrom<SerializedBytes> for HashString
impl TryFrom<SerializedBytes> for HashString
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(sb: SerializedBytes) -> Result<HashString, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<HashString, SerializedBytesError>
Performs the conversion.
impl StructuralPartialEq for HashString
Auto Trait Implementations§
impl Freeze for HashString
impl RefUnwindSafe for HashString
impl Send for HashString
impl Sync for HashString
impl Unpin for HashString
impl UnwindSafe for HashString
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more