pub struct SerializedBytes(/* private fields */);
Expand description
A Canonical Serialized Bytes representation for data If you have a data structure that needs a canonical byte representation use this Always round-trip through SerializedBytes via. a single TryFrom implementation. This ensures that the internal bytes of SerializedBytes are indeed canonical. The corrolary is that if bytes are NOT wrapped in SerializedBytes we can assume they are NOT canonical. Typically we need a canonical serialization when data is to be handled at the byte level by independently implemented and maintained systems.
Examples of times we need a canonical set of bytes to represent data:
- cryptographic operations
- moving across the host/guest wasm boundary
- putting data on the network
Examples of times where we may not need a canonical representation and so may not need this:
- round tripping data through a database that has its own serialization preferences
- debug output or logging of data that is to be human readible
- moving between data types within a single system that has no external facing representation
uses #[repr(transparent)] to maximise compatibility with ffi @see https://doc.rust-lang.org/1.26.2/unstable-book/language-features/repr-transparent.html#enter-reprtransparent
uses serde_bytes for efficient serialization and deserialization without this every byte will be individually round tripped through serde @see https://crates.io/crates/serde_bytes
Implementations§
Trait Implementations§
Source§impl AsRef<SerializedBytes> for AppEntryBytes
impl AsRef<SerializedBytes> for AppEntryBytes
Source§fn as_ref(&self) -> &SerializedBytes
fn as_ref(&self) -> &SerializedBytes
Source§impl Borrow<SerializedBytes> for AppEntryBytes
impl Borrow<SerializedBytes> for AppEntryBytes
Source§fn borrow(&self) -> &SerializedBytes
fn borrow(&self) -> &SerializedBytes
Source§impl Clone for SerializedBytes
impl Clone for SerializedBytes
Source§fn clone(&self) -> SerializedBytes
fn clone(&self) -> SerializedBytes
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for SerializedBytes
A bit of magic to convert the internal messagepack bytes into roughly equivalent JSON output
for the purposes of debugging.
90% of the time you probably want this if you are a dev, to see something that “looks like” a
data structure when you do {:?} in a formatted string, rather than a vector of bytes
in the remaining 10% of situations where you want to debug the real messagepack bytes, call the
.bytes() method on SerializedBytes and debug that.
impl Debug for SerializedBytes
A bit of magic to convert the internal messagepack bytes into roughly equivalent JSON output for the purposes of debugging. 90% of the time you probably want this if you are a dev, to see something that “looks like” a data structure when you do {:?} in a formatted string, rather than a vector of bytes in the remaining 10% of situations where you want to debug the real messagepack bytes, call the .bytes() method on SerializedBytes and debug that.
Source§impl Default for SerializedBytes
impl Default for SerializedBytes
Source§fn default() -> SerializedBytes
fn default() -> SerializedBytes
Source§impl<'de> Deserialize<'de> for SerializedBytes
impl<'de> Deserialize<'de> for SerializedBytes
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SerializedBytes, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SerializedBytes, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Source§impl From<AppEntryBytes> for SerializedBytes
impl From<AppEntryBytes> for SerializedBytes
Source§fn from(aeb: AppEntryBytes) -> SerializedBytes
fn from(aeb: AppEntryBytes) -> SerializedBytes
Source§impl From<SerializedBytes> for UnsafeBytes
impl From<SerializedBytes> for UnsafeBytes
Source§fn from(sb: SerializedBytes) -> UnsafeBytes
fn from(sb: SerializedBytes) -> UnsafeBytes
Source§impl From<UnsafeBytes> for SerializedBytes
impl From<UnsafeBytes> for SerializedBytes
Source§fn from(b: UnsafeBytes) -> SerializedBytes
fn from(b: UnsafeBytes) -> SerializedBytes
Source§impl Hash for SerializedBytes
impl Hash for SerializedBytes
Source§impl Ord for SerializedBytes
impl Ord for SerializedBytes
Source§fn cmp(&self, other: &SerializedBytes) -> Ordering
fn cmp(&self, other: &SerializedBytes) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for SerializedBytes
impl PartialEq for SerializedBytes
Source§impl PartialOrd for SerializedBytes
impl PartialOrd for SerializedBytes
Source§impl Serialize for SerializedBytes
impl Serialize for SerializedBytes
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Source§impl TryFrom<&()> for SerializedBytes
impl TryFrom<&()> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &()) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &()) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&Action> for SerializedBytes
impl TryFrom<&Action> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &Action) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &Action) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&ActionType> for SerializedBytes
impl TryFrom<&ActionType> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &ActionType) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &ActionType) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&ActivityRequest> for SerializedBytes
impl TryFrom<&ActivityRequest> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &ActivityRequest,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &ActivityRequest, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&AgentActivity> for SerializedBytes
impl TryFrom<&AgentActivity> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &AgentActivity) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &AgentActivity) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&AgentInfo> for SerializedBytes
impl TryFrom<&AgentInfo> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &AgentInfo) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &AgentInfo) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&AgentValidationPkg> for SerializedBytes
impl TryFrom<&AgentValidationPkg> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &AgentValidationPkg,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &AgentValidationPkg, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&Anchor> for SerializedBytes
impl TryFrom<&Anchor> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &Anchor) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &Anchor) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&AnyDht> for SerializedBytes
impl TryFrom<&AnyDht> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &AnyDht) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &AnyDht) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&AnyLinkable> for SerializedBytes
impl TryFrom<&AnyLinkable> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &AnyLinkable) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &AnyLinkable) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&AppEntry> for SerializedBytes
impl TryFrom<&AppEntry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &AppEntry) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &AppEntry) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&AppEntryDef> for SerializedBytes
impl TryFrom<&AppEntryDef> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &AppEntryDef) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &AppEntryDef) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&BoolWrap> for SerializedBytes
impl TryFrom<&BoolWrap> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &BoolWrap) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &BoolWrap) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&CapClaim> for SerializedBytes
impl TryFrom<&CapClaim> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &CapClaim) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &CapClaim) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&CapSecret> for SerializedBytes
impl TryFrom<&CapSecret> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &CapSecret) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &CapSecret) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&CellId> for SerializedBytes
impl TryFrom<&CellId> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &CellId) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &CellId) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&ChainFilter> for SerializedBytes
impl TryFrom<&ChainFilter> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &ChainFilter) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &ChainFilter) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&CloseChain> for SerializedBytes
impl TryFrom<&CloseChain> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &CloseChain) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &CloseChain) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&Component> for SerializedBytes
impl TryFrom<&Component> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &Component) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &Component) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&Create> for SerializedBytes
impl TryFrom<&Create> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &Create) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &Create) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&CreateInput> for SerializedBytes
impl TryFrom<&CreateInput> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &CreateInput) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &CreateInput) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&CreateLink> for SerializedBytes
impl TryFrom<&CreateLink> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &CreateLink) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &CreateLink) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&Delete> for SerializedBytes
impl TryFrom<&Delete> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &Delete) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &Delete) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&DeleteAction> for SerializedBytes
impl TryFrom<&DeleteAction> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &DeleteAction) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &DeleteAction) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&DeleteLink> for SerializedBytes
impl TryFrom<&DeleteLink> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &DeleteLink) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &DeleteLink) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&Details> for SerializedBytes
impl TryFrom<&Details> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &Details) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &Details) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&DeterministicGetAgentActivityFilter> for SerializedBytes
impl TryFrom<&DeterministicGetAgentActivityFilter> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &DeterministicGetAgentActivityFilter,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &DeterministicGetAgentActivityFilter, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&Dna> for SerializedBytes
impl TryFrom<&Dna> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &Dna) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &Dna) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&DnaDef> for SerializedBytes
impl TryFrom<&DnaDef> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &DnaDef) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &DnaDef) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&DnaEntry> for SerializedBytes
impl TryFrom<&DnaEntry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &DnaEntry) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &DnaEntry) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&Entry> for SerializedBytes
impl TryFrom<&Entry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &Entry) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &Entry) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&EntryCreationAction> for SerializedBytes
impl TryFrom<&EntryCreationAction> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &EntryCreationAction,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &EntryCreationAction, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&EntryDefIndex> for SerializedBytes
impl TryFrom<&EntryDefIndex> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &EntryDefIndex) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &EntryDefIndex) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&EntryDefsCallbackResult> for SerializedBytes
impl TryFrom<&EntryDefsCallbackResult> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &EntryDefsCallbackResult,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &EntryDefsCallbackResult, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&EntryDetails> for SerializedBytes
impl TryFrom<&EntryDetails> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &EntryDetails) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &EntryDetails) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&EntryHashes> for SerializedBytes
impl TryFrom<&EntryHashes> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &EntryHashes) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &EntryHashes) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&EntryRateWeight> for SerializedBytes
impl TryFrom<&EntryRateWeight> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &EntryRateWeight,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &EntryRateWeight, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&EntryType> for SerializedBytes
impl TryFrom<&EntryType> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &EntryType) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &EntryType) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&EntryVisibility> for SerializedBytes
impl TryFrom<&EntryVisibility> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &EntryVisibility,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &EntryVisibility, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&GenesisSelfCheckDataV1> for SerializedBytes
impl TryFrom<&GenesisSelfCheckDataV1> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &GenesisSelfCheckDataV1,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &GenesisSelfCheckDataV1, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&GenesisSelfCheckDataV2> for SerializedBytes
impl TryFrom<&GenesisSelfCheckDataV2> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &GenesisSelfCheckDataV2,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &GenesisSelfCheckDataV2, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl<T> TryFrom<&HoloHash<T>> for SerializedByteswhere
T: HashType,
impl<T> TryFrom<&HoloHash<T>> for SerializedByteswhere
T: HashType,
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &HoloHash<T>) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &HoloHash<T>) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&InitCallbackResult> for SerializedBytes
impl TryFrom<&InitCallbackResult> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &InitCallbackResult,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &InitCallbackResult, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&InitZomesComplete> for SerializedBytes
impl TryFrom<&InitZomesComplete> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &InitZomesComplete,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &InitZomesComplete, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&Link> for SerializedBytes
impl TryFrom<&Link> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &Link) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &Link) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&LinkDetails> for SerializedBytes
impl TryFrom<&LinkDetails> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &LinkDetails) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &LinkDetails) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&LinkQuery> for SerializedBytes
impl TryFrom<&LinkQuery> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &LinkQuery) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &LinkQuery) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&LinkTag> for SerializedBytes
impl TryFrom<&LinkTag> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &LinkTag) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &LinkTag) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&LinkType> for SerializedBytes
impl TryFrom<&LinkType> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &LinkType) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &LinkType) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&MemoryBlockEntry> for SerializedBytes
impl TryFrom<&MemoryBlockEntry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &MemoryBlockEntry,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &MemoryBlockEntry, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&MemoryEntry> for SerializedBytes
impl TryFrom<&MemoryEntry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &MemoryEntry) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &MemoryEntry) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&MigrateAgent> for SerializedBytes
impl TryFrom<&MigrateAgent> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &MigrateAgent) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &MigrateAgent) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&MigrateAgentCallbackResult> for SerializedBytes
impl TryFrom<&MigrateAgentCallbackResult> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &MigrateAgentCallbackResult,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &MigrateAgentCallbackResult, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&Op> for SerializedBytes
impl TryFrom<&Op> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &Op) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &Op) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&OpenChain> for SerializedBytes
impl TryFrom<&OpenChain> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &OpenChain) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &OpenChain) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&Path> for SerializedBytes
impl TryFrom<&Path> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &Path) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &Path) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&ChainQueryFilter> for SerializedBytes
impl TryFrom<&ChainQueryFilter> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &ChainQueryFilter,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &ChainQueryFilter, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&RateWeight> for SerializedBytes
impl TryFrom<&RateWeight> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &RateWeight) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &RateWeight) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&Record> for SerializedBytes
impl TryFrom<&Record> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &Record) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &Record) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&RecordDetails> for SerializedBytes
impl TryFrom<&RecordDetails> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &RecordDetails) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &RecordDetails) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&RecordEntry> for SerializedBytes
impl TryFrom<&RecordEntry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &RecordEntry) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &RecordEntry) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&RegisterAgentActivity> for SerializedBytes
impl TryFrom<&RegisterAgentActivity> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &RegisterAgentActivity,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &RegisterAgentActivity, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&RegisterCreateLink> for SerializedBytes
impl TryFrom<&RegisterCreateLink> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &RegisterCreateLink,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &RegisterCreateLink, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&RegisterDelete> for SerializedBytes
impl TryFrom<&RegisterDelete> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &RegisterDelete) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &RegisterDelete) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&RegisterDeleteLink> for SerializedBytes
impl TryFrom<&RegisterDeleteLink> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &RegisterDeleteLink,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &RegisterDeleteLink, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&RegisterUpdate> for SerializedBytes
impl TryFrom<&RegisterUpdate> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &RegisterUpdate) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &RegisterUpdate) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&RemoteSignal> for SerializedBytes
impl TryFrom<&RemoteSignal> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &RemoteSignal) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &RemoteSignal) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&ScopedZomeTypesSet> for SerializedBytes
impl TryFrom<&ScopedZomeTypesSet> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &ScopedZomeTypesSet,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &ScopedZomeTypesSet, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl<'a> TryFrom<&'a SerializedBytes> for SerializedBytes
impl<'a> TryFrom<&'a SerializedBytes> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
s: &'a SerializedBytes,
) -> Result<SerializedBytes, <SerializedBytes as TryFrom<&'a SerializedBytes>>::Error>
fn try_from( s: &'a SerializedBytes, ) -> Result<SerializedBytes, <SerializedBytes as TryFrom<&'a SerializedBytes>>::Error>
Source§impl TryFrom<&Sign> for SerializedBytes
impl TryFrom<&Sign> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &Sign) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &Sign) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&SignedAction> for SerializedBytes
impl TryFrom<&SignedAction> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &SignedAction) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &SignedAction) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&StoreEntry> for SerializedBytes
impl TryFrom<&StoreEntry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &StoreEntry) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &StoreEntry) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&StoreRecord> for SerializedBytes
impl TryFrom<&StoreRecord> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &StoreRecord) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &StoreRecord) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&StringWrap> for SerializedBytes
impl TryFrom<&StringWrap> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &StringWrap) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &StringWrap) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&TypedPath> for SerializedBytes
impl TryFrom<&TypedPath> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &TypedPath) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &TypedPath) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&U32Wrap> for SerializedBytes
impl TryFrom<&U32Wrap> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &U32Wrap) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &U32Wrap) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&UiEntry> for SerializedBytes
impl TryFrom<&UiEntry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &UiEntry) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &UiEntry) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&Update> for SerializedBytes
impl TryFrom<&Update> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &Update) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &Update) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&UpdateAction> for SerializedBytes
impl TryFrom<&UpdateAction> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &UpdateAction) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &UpdateAction) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&ValidateCallbackResult> for SerializedBytes
impl TryFrom<&ValidateCallbackResult> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &ValidateCallbackResult,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &ValidateCallbackResult, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&VerifySignature> for SerializedBytes
impl TryFrom<&VerifySignature> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &VerifySignature,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &VerifySignature, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&Warrant> for SerializedBytes
impl TryFrom<&Warrant> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &Warrant) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &Warrant) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&WebAppEntry> for SerializedBytes
impl TryFrom<&WebAppEntry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &WebAppEntry) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &WebAppEntry) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&WebAppPackageEntry> for SerializedBytes
impl TryFrom<&WebAppPackageEntry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &WebAppPackageEntry,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &WebAppPackageEntry, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&WebAppPackageVersionEntry> for SerializedBytes
impl TryFrom<&WebAppPackageVersionEntry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &WebAppPackageVersionEntry,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &WebAppPackageVersionEntry, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&WeighInput> for SerializedBytes
impl TryFrom<&WeighInput> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &WeighInput) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &WeighInput) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&X25519PubKey> for SerializedBytes
impl TryFrom<&X25519PubKey> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &X25519PubKey) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &X25519PubKey) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&X25519XSalsa20Poly1305Decrypt> for SerializedBytes
impl TryFrom<&X25519XSalsa20Poly1305Decrypt> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &X25519XSalsa20Poly1305Decrypt,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &X25519XSalsa20Poly1305Decrypt, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&X25519XSalsa20Poly1305Encrypt> for SerializedBytes
impl TryFrom<&X25519XSalsa20Poly1305Encrypt> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &X25519XSalsa20Poly1305Encrypt,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &X25519XSalsa20Poly1305Encrypt, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&XSalsa20Poly1305Decrypt> for SerializedBytes
impl TryFrom<&XSalsa20Poly1305Decrypt> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &XSalsa20Poly1305Decrypt,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &XSalsa20Poly1305Decrypt, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&XSalsa20Poly1305Encrypt> for SerializedBytes
impl TryFrom<&XSalsa20Poly1305Encrypt> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &XSalsa20Poly1305Encrypt,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &XSalsa20Poly1305Encrypt, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&XSalsa20Poly1305KeyRef> for SerializedBytes
impl TryFrom<&XSalsa20Poly1305KeyRef> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &XSalsa20Poly1305KeyRef,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &XSalsa20Poly1305KeyRef, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&XSalsa20Poly1305Nonce> for SerializedBytes
impl TryFrom<&XSalsa20Poly1305Nonce> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &XSalsa20Poly1305Nonce,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &XSalsa20Poly1305Nonce, ) -> Result<SerializedBytes, SerializedBytesError>
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &XSalsa20Poly1305SharedSecretExport,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &XSalsa20Poly1305SharedSecretExport, ) -> Result<SerializedBytes, SerializedBytesError>
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &XSalsa20Poly1305SharedSecretIngest,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &XSalsa20Poly1305SharedSecretIngest, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&YamlProperties> for SerializedBytes
impl TryFrom<&YamlProperties> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &YamlProperties) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &YamlProperties) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&ZomeCallResponse> for SerializedBytes
impl TryFrom<&ZomeCallResponse> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: &ZomeCallResponse,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &ZomeCallResponse, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&ZomeIndex> for SerializedBytes
impl TryFrom<&ZomeIndex> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &ZomeIndex) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &ZomeIndex) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<&ZomeInfo> for SerializedBytes
impl TryFrom<&ZomeInfo> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: &ZomeInfo) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &ZomeInfo) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<()> for SerializedBytes
impl TryFrom<()> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: ()) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: ()) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<Action> for SerializedBytes
impl TryFrom<Action> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: Action) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: Action) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<ActionType> for SerializedBytes
impl TryFrom<ActionType> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: ActionType) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: ActionType) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<ActivityRequest> for SerializedBytes
impl TryFrom<ActivityRequest> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: ActivityRequest) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: ActivityRequest) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<AgentActivity> for SerializedBytes
impl TryFrom<AgentActivity> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: AgentActivity) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: AgentActivity) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<AgentInfo> for SerializedBytes
impl TryFrom<AgentInfo> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: AgentInfo) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: AgentInfo) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<AgentValidationPkg> for SerializedBytes
impl TryFrom<AgentValidationPkg> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: AgentValidationPkg,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: AgentValidationPkg, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<Anchor> for SerializedBytes
impl TryFrom<Anchor> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: Anchor) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: Anchor) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<AnyDht> for SerializedBytes
impl TryFrom<AnyDht> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: AnyDht) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: AnyDht) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<AnyLinkable> for SerializedBytes
impl TryFrom<AnyLinkable> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: AnyLinkable) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: AnyLinkable) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<AppEntry> for SerializedBytes
impl TryFrom<AppEntry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: AppEntry) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: AppEntry) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<AppEntryDef> for SerializedBytes
impl TryFrom<AppEntryDef> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: AppEntryDef) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: AppEntryDef) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<BoolWrap> for SerializedBytes
impl TryFrom<BoolWrap> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: BoolWrap) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: BoolWrap) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<CapClaim> for SerializedBytes
impl TryFrom<CapClaim> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: CapClaim) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: CapClaim) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<CapSecret> for SerializedBytes
impl TryFrom<CapSecret> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: CapSecret) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: CapSecret) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<CellId> for SerializedBytes
impl TryFrom<CellId> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: CellId) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: CellId) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<ChainFilter> for SerializedBytes
impl TryFrom<ChainFilter> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: ChainFilter) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: ChainFilter) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<CloseChain> for SerializedBytes
impl TryFrom<CloseChain> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: CloseChain) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: CloseChain) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<Component> for SerializedBytes
impl TryFrom<Component> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: Component) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: Component) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<Create> for SerializedBytes
impl TryFrom<Create> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: Create) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: Create) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<CreateInput> for SerializedBytes
impl TryFrom<CreateInput> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: CreateInput) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: CreateInput) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<CreateLink> for SerializedBytes
impl TryFrom<CreateLink> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: CreateLink) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: CreateLink) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<Delete> for SerializedBytes
impl TryFrom<Delete> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: Delete) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: Delete) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<DeleteAction> for SerializedBytes
impl TryFrom<DeleteAction> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: DeleteAction) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: DeleteAction) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<DeleteLink> for SerializedBytes
impl TryFrom<DeleteLink> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: DeleteLink) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: DeleteLink) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<Details> for SerializedBytes
impl TryFrom<Details> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: Details) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: Details) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<DeterministicGetAgentActivityFilter> for SerializedBytes
impl TryFrom<DeterministicGetAgentActivityFilter> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: DeterministicGetAgentActivityFilter,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: DeterministicGetAgentActivityFilter, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<Dna> for SerializedBytes
impl TryFrom<Dna> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: Dna) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: Dna) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<DnaDef> for SerializedBytes
impl TryFrom<DnaDef> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: DnaDef) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: DnaDef) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<DnaEntry> for SerializedBytes
impl TryFrom<DnaEntry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: DnaEntry) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: DnaEntry) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<Entry> for SerializedBytes
impl TryFrom<Entry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: Entry) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: Entry) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<EntryCreationAction> for SerializedBytes
impl TryFrom<EntryCreationAction> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: EntryCreationAction,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: EntryCreationAction, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<EntryDefIndex> for SerializedBytes
impl TryFrom<EntryDefIndex> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: EntryDefIndex) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: EntryDefIndex) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<EntryDefsCallbackResult> for SerializedBytes
impl TryFrom<EntryDefsCallbackResult> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: EntryDefsCallbackResult,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: EntryDefsCallbackResult, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<EntryDetails> for SerializedBytes
impl TryFrom<EntryDetails> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: EntryDetails) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: EntryDetails) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<EntryHashes> for SerializedBytes
impl TryFrom<EntryHashes> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: EntryHashes) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: EntryHashes) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<EntryRateWeight> for SerializedBytes
impl TryFrom<EntryRateWeight> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: EntryRateWeight) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: EntryRateWeight) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<EntryType> for SerializedBytes
impl TryFrom<EntryType> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: EntryType) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: EntryType) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<EntryVisibility> for SerializedBytes
impl TryFrom<EntryVisibility> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: EntryVisibility) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: EntryVisibility) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<GenesisSelfCheckDataV1> for SerializedBytes
impl TryFrom<GenesisSelfCheckDataV1> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: GenesisSelfCheckDataV1,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: GenesisSelfCheckDataV1, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<GenesisSelfCheckDataV2> for SerializedBytes
impl TryFrom<GenesisSelfCheckDataV2> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: GenesisSelfCheckDataV2,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: GenesisSelfCheckDataV2, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl<T> TryFrom<HoloHash<T>> for SerializedByteswhere
T: HashType,
impl<T> TryFrom<HoloHash<T>> for SerializedByteswhere
T: HashType,
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: HoloHash<T>) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: HoloHash<T>) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<InitCallbackResult> for SerializedBytes
impl TryFrom<InitCallbackResult> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: InitCallbackResult,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: InitCallbackResult, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<InitZomesComplete> for SerializedBytes
impl TryFrom<InitZomesComplete> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: InitZomesComplete,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: InitZomesComplete, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<Link> for SerializedBytes
impl TryFrom<Link> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: Link) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: Link) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<LinkDetails> for SerializedBytes
impl TryFrom<LinkDetails> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: LinkDetails) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: LinkDetails) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<LinkQuery> for SerializedBytes
impl TryFrom<LinkQuery> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: LinkQuery) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: LinkQuery) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<LinkTag> for SerializedBytes
impl TryFrom<LinkTag> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: LinkTag) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: LinkTag) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<LinkType> for SerializedBytes
impl TryFrom<LinkType> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: LinkType) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: LinkType) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<MemoryBlockEntry> for SerializedBytes
impl TryFrom<MemoryBlockEntry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: MemoryBlockEntry,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: MemoryBlockEntry, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<MemoryEntry> for SerializedBytes
impl TryFrom<MemoryEntry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: MemoryEntry) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: MemoryEntry) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<MigrateAgent> for SerializedBytes
impl TryFrom<MigrateAgent> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: MigrateAgent) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: MigrateAgent) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<MigrateAgentCallbackResult> for SerializedBytes
impl TryFrom<MigrateAgentCallbackResult> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: MigrateAgentCallbackResult,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: MigrateAgentCallbackResult, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<Op> for SerializedBytes
impl TryFrom<Op> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: Op) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: Op) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<OpenChain> for SerializedBytes
impl TryFrom<OpenChain> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: OpenChain) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: OpenChain) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<Path> for SerializedBytes
impl TryFrom<Path> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: Path) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: Path) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<ChainQueryFilter> for SerializedBytes
impl TryFrom<ChainQueryFilter> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: ChainQueryFilter,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: ChainQueryFilter, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<RateWeight> for SerializedBytes
impl TryFrom<RateWeight> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: RateWeight) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: RateWeight) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<Record> for SerializedBytes
impl TryFrom<Record> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: Record) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: Record) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<RecordDetails> for SerializedBytes
impl TryFrom<RecordDetails> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: RecordDetails) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: RecordDetails) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<RecordEntry> for SerializedBytes
impl TryFrom<RecordEntry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: RecordEntry) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: RecordEntry) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<RegisterAgentActivity> for SerializedBytes
impl TryFrom<RegisterAgentActivity> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: RegisterAgentActivity,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: RegisterAgentActivity, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<RegisterCreateLink> for SerializedBytes
impl TryFrom<RegisterCreateLink> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: RegisterCreateLink,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: RegisterCreateLink, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<RegisterDelete> for SerializedBytes
impl TryFrom<RegisterDelete> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: RegisterDelete) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: RegisterDelete) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<RegisterDeleteLink> for SerializedBytes
impl TryFrom<RegisterDeleteLink> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: RegisterDeleteLink,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: RegisterDeleteLink, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<RegisterUpdate> for SerializedBytes
impl TryFrom<RegisterUpdate> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: RegisterUpdate) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: RegisterUpdate) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<RemoteSignal> for SerializedBytes
impl TryFrom<RemoteSignal> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: RemoteSignal) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: RemoteSignal) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<ScopedZomeTypesSet> for SerializedBytes
impl TryFrom<ScopedZomeTypesSet> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: ScopedZomeTypesSet,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: ScopedZomeTypesSet, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for ()
impl TryFrom<SerializedBytes> for ()
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<(), SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<(), SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for Action
impl TryFrom<SerializedBytes> for Action
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<Action, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<Action, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for ActionType
impl TryFrom<SerializedBytes> for ActionType
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<ActionType, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<ActionType, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for ActivityRequest
impl TryFrom<SerializedBytes> for ActivityRequest
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<ActivityRequest, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<ActivityRequest, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for AgentActivity
impl TryFrom<SerializedBytes> for AgentActivity
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<AgentActivity, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<AgentActivity, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for AgentInfo
impl TryFrom<SerializedBytes> for AgentInfo
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<AgentInfo, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<AgentInfo, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for AgentValidationPkg
impl TryFrom<SerializedBytes> for AgentValidationPkg
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<AgentValidationPkg, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<AgentValidationPkg, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for Anchor
impl TryFrom<SerializedBytes> for Anchor
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<Anchor, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<Anchor, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for AnyDht
impl TryFrom<SerializedBytes> for AnyDht
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<AnyDht, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<AnyDht, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for AnyLinkable
impl TryFrom<SerializedBytes> for AnyLinkable
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<AnyLinkable, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<AnyLinkable, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for AppEntry
impl TryFrom<SerializedBytes> for AppEntry
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<AppEntry, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<AppEntry, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for AppEntryBytes
impl TryFrom<SerializedBytes> for AppEntryBytes
Source§type Error = EntryError
type Error = EntryError
Source§fn try_from(sb: SerializedBytes) -> Result<AppEntryBytes, EntryError>
fn try_from(sb: SerializedBytes) -> Result<AppEntryBytes, EntryError>
Source§impl TryFrom<SerializedBytes> for AppEntryDef
impl TryFrom<SerializedBytes> for AppEntryDef
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<AppEntryDef, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<AppEntryDef, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for CapClaim
impl TryFrom<SerializedBytes> for CapClaim
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<CapClaim, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<CapClaim, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for CapSecret
impl TryFrom<SerializedBytes> for CapSecret
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<CapSecret, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<CapSecret, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for CellId
impl TryFrom<SerializedBytes> for CellId
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<CellId, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<CellId, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for ChainFilter
impl TryFrom<SerializedBytes> for ChainFilter
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<ChainFilter, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<ChainFilter, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for CloseChain
impl TryFrom<SerializedBytes> for CloseChain
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<CloseChain, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<CloseChain, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for Component
impl TryFrom<SerializedBytes> for Component
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<Component, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<Component, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for Create
impl TryFrom<SerializedBytes> for Create
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<Create, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<Create, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for CreateInput
impl TryFrom<SerializedBytes> for CreateInput
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<CreateInput, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<CreateInput, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for CreateLink
impl TryFrom<SerializedBytes> for CreateLink
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<CreateLink, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<CreateLink, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for Delete
impl TryFrom<SerializedBytes> for Delete
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<Delete, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<Delete, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for DeleteAction
impl TryFrom<SerializedBytes> for DeleteAction
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<DeleteAction, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<DeleteAction, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for DeleteLink
impl TryFrom<SerializedBytes> for DeleteLink
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<DeleteLink, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<DeleteLink, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for Details
impl TryFrom<SerializedBytes> for Details
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<Details, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<Details, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for DeterministicGetAgentActivityFilter
impl TryFrom<SerializedBytes> for DeterministicGetAgentActivityFilter
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<DeterministicGetAgentActivityFilter, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<DeterministicGetAgentActivityFilter, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for Dna
impl TryFrom<SerializedBytes> for Dna
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<Dna, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<Dna, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for DnaDef
impl TryFrom<SerializedBytes> for DnaDef
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<DnaDef, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<DnaDef, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for DnaEntry
impl TryFrom<SerializedBytes> for DnaEntry
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<DnaEntry, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<DnaEntry, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for Entry
impl TryFrom<SerializedBytes> for Entry
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<Entry, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<Entry, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for EntryCreationAction
impl TryFrom<SerializedBytes> for EntryCreationAction
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<EntryCreationAction, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<EntryCreationAction, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for EntryDefIndex
impl TryFrom<SerializedBytes> for EntryDefIndex
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<EntryDefIndex, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<EntryDefIndex, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for EntryDefsCallbackResult
impl TryFrom<SerializedBytes> for EntryDefsCallbackResult
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<EntryDefsCallbackResult, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<EntryDefsCallbackResult, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for EntryDetails
impl TryFrom<SerializedBytes> for EntryDetails
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<EntryDetails, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<EntryDetails, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for EntryHashes
impl TryFrom<SerializedBytes> for EntryHashes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<EntryHashes, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<EntryHashes, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for EntryRateWeight
impl TryFrom<SerializedBytes> for EntryRateWeight
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<EntryRateWeight, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<EntryRateWeight, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for EntryType
impl TryFrom<SerializedBytes> for EntryType
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<EntryType, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<EntryType, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for EntryVisibility
impl TryFrom<SerializedBytes> for EntryVisibility
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<EntryVisibility, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<EntryVisibility, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for GenesisSelfCheckDataV1
impl TryFrom<SerializedBytes> for GenesisSelfCheckDataV1
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<GenesisSelfCheckDataV1, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<GenesisSelfCheckDataV1, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for GenesisSelfCheckDataV2
impl TryFrom<SerializedBytes> for GenesisSelfCheckDataV2
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<GenesisSelfCheckDataV2, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<GenesisSelfCheckDataV2, SerializedBytesError>
Source§impl<T> TryFrom<SerializedBytes> for HoloHash<T>where
T: HashType,
impl<T> TryFrom<SerializedBytes> for HoloHash<T>where
T: HashType,
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<HoloHash<T>, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<HoloHash<T>, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for InitCallbackResult
impl TryFrom<SerializedBytes> for InitCallbackResult
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<InitCallbackResult, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<InitCallbackResult, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for InitZomesComplete
impl TryFrom<SerializedBytes> for InitZomesComplete
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<InitZomesComplete, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<InitZomesComplete, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for Link
impl TryFrom<SerializedBytes> for Link
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<Link, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<Link, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for LinkDetails
impl TryFrom<SerializedBytes> for LinkDetails
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<LinkDetails, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<LinkDetails, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for LinkQuery
impl TryFrom<SerializedBytes> for LinkQuery
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<LinkQuery, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<LinkQuery, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for LinkTag
impl TryFrom<SerializedBytes> for LinkTag
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<LinkTag, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<LinkTag, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for LinkType
impl TryFrom<SerializedBytes> for LinkType
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<LinkType, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<LinkType, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for MemoryBlockEntry
impl TryFrom<SerializedBytes> for MemoryBlockEntry
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<MemoryBlockEntry, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<MemoryBlockEntry, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for MemoryEntry
impl TryFrom<SerializedBytes> for MemoryEntry
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<MemoryEntry, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<MemoryEntry, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for MigrateAgent
impl TryFrom<SerializedBytes> for MigrateAgent
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<MigrateAgent, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<MigrateAgent, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for MigrateAgentCallbackResult
impl TryFrom<SerializedBytes> for MigrateAgentCallbackResult
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<MigrateAgentCallbackResult, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<MigrateAgentCallbackResult, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for Op
impl TryFrom<SerializedBytes> for Op
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<Op, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<Op, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for OpenChain
impl TryFrom<SerializedBytes> for OpenChain
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<OpenChain, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<OpenChain, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for Path
impl TryFrom<SerializedBytes> for Path
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<Path, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<Path, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for ChainQueryFilter
impl TryFrom<SerializedBytes> for ChainQueryFilter
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<ChainQueryFilter, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<ChainQueryFilter, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for RateWeight
impl TryFrom<SerializedBytes> for RateWeight
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<RateWeight, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<RateWeight, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for Record
impl TryFrom<SerializedBytes> for Record
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<Record, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<Record, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for RecordDetails
impl TryFrom<SerializedBytes> for RecordDetails
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<RecordDetails, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<RecordDetails, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for RecordEntry
impl TryFrom<SerializedBytes> for RecordEntry
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<RecordEntry, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<RecordEntry, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for RegisterAgentActivity
impl TryFrom<SerializedBytes> for RegisterAgentActivity
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<RegisterAgentActivity, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<RegisterAgentActivity, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for RegisterCreateLink
impl TryFrom<SerializedBytes> for RegisterCreateLink
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<RegisterCreateLink, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<RegisterCreateLink, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for RegisterDelete
impl TryFrom<SerializedBytes> for RegisterDelete
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<RegisterDelete, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<RegisterDelete, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for RegisterDeleteLink
impl TryFrom<SerializedBytes> for RegisterDeleteLink
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<RegisterDeleteLink, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<RegisterDeleteLink, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for RegisterUpdate
impl TryFrom<SerializedBytes> for RegisterUpdate
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<RegisterUpdate, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<RegisterUpdate, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for RemoteSignal
impl TryFrom<SerializedBytes> for RemoteSignal
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<RemoteSignal, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<RemoteSignal, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for ScopedZomeTypesSet
impl TryFrom<SerializedBytes> for ScopedZomeTypesSet
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<ScopedZomeTypesSet, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<ScopedZomeTypesSet, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for Sign
impl TryFrom<SerializedBytes> for Sign
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<Sign, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<Sign, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for SignedAction
impl TryFrom<SerializedBytes> for SignedAction
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<SignedAction, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<SignedAction, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for StoreEntry
impl TryFrom<SerializedBytes> for StoreEntry
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<StoreEntry, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<StoreEntry, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for StoreRecord
impl TryFrom<SerializedBytes> for StoreRecord
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<StoreRecord, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<StoreRecord, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for TypedPath
impl TryFrom<SerializedBytes> for TypedPath
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<TypedPath, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<TypedPath, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for UiEntry
impl TryFrom<SerializedBytes> for UiEntry
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<UiEntry, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<UiEntry, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for Update
impl TryFrom<SerializedBytes> for Update
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<Update, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<Update, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for UpdateAction
impl TryFrom<SerializedBytes> for UpdateAction
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<UpdateAction, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<UpdateAction, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for ValidateCallbackResult
impl TryFrom<SerializedBytes> for ValidateCallbackResult
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<ValidateCallbackResult, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<ValidateCallbackResult, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for VerifySignature
impl TryFrom<SerializedBytes> for VerifySignature
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<VerifySignature, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<VerifySignature, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for Warrant
impl TryFrom<SerializedBytes> for Warrant
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<Warrant, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<Warrant, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for WebAppEntry
impl TryFrom<SerializedBytes> for WebAppEntry
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<WebAppEntry, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<WebAppEntry, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for WebAppPackageEntry
impl TryFrom<SerializedBytes> for WebAppPackageEntry
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<WebAppPackageEntry, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<WebAppPackageEntry, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for WebAppPackageVersionEntry
impl TryFrom<SerializedBytes> for WebAppPackageVersionEntry
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<WebAppPackageVersionEntry, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<WebAppPackageVersionEntry, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for WeighInput
impl TryFrom<SerializedBytes> for WeighInput
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<WeighInput, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<WeighInput, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for X25519PubKey
impl TryFrom<SerializedBytes> for X25519PubKey
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<X25519PubKey, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<X25519PubKey, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for X25519XSalsa20Poly1305Decrypt
impl TryFrom<SerializedBytes> for X25519XSalsa20Poly1305Decrypt
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<X25519XSalsa20Poly1305Decrypt, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<X25519XSalsa20Poly1305Decrypt, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for X25519XSalsa20Poly1305Encrypt
impl TryFrom<SerializedBytes> for X25519XSalsa20Poly1305Encrypt
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<X25519XSalsa20Poly1305Encrypt, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<X25519XSalsa20Poly1305Encrypt, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for XSalsa20Poly1305Decrypt
impl TryFrom<SerializedBytes> for XSalsa20Poly1305Decrypt
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<XSalsa20Poly1305Decrypt, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<XSalsa20Poly1305Decrypt, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for XSalsa20Poly1305Encrypt
impl TryFrom<SerializedBytes> for XSalsa20Poly1305Encrypt
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<XSalsa20Poly1305Encrypt, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<XSalsa20Poly1305Encrypt, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for XSalsa20Poly1305KeyRef
impl TryFrom<SerializedBytes> for XSalsa20Poly1305KeyRef
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<XSalsa20Poly1305KeyRef, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<XSalsa20Poly1305KeyRef, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for XSalsa20Poly1305Nonce
impl TryFrom<SerializedBytes> for XSalsa20Poly1305Nonce
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<XSalsa20Poly1305Nonce, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<XSalsa20Poly1305Nonce, SerializedBytesError>
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<XSalsa20Poly1305SharedSecretExport, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<XSalsa20Poly1305SharedSecretExport, SerializedBytesError>
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<XSalsa20Poly1305SharedSecretIngest, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<XSalsa20Poly1305SharedSecretIngest, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for YamlProperties
impl TryFrom<SerializedBytes> for YamlProperties
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<YamlProperties, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<YamlProperties, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for ZomeCallResponse
impl TryFrom<SerializedBytes> for ZomeCallResponse
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
sb: SerializedBytes,
) -> Result<ZomeCallResponse, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<ZomeCallResponse, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for ZomeIndex
impl TryFrom<SerializedBytes> for ZomeIndex
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<ZomeIndex, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<ZomeIndex, SerializedBytesError>
Source§impl TryFrom<SerializedBytes> for ZomeInfo
impl TryFrom<SerializedBytes> for ZomeInfo
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(sb: SerializedBytes) -> Result<ZomeInfo, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<ZomeInfo, SerializedBytesError>
Source§impl TryFrom<Sign> for SerializedBytes
impl TryFrom<Sign> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: Sign) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: Sign) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<SignedAction> for SerializedBytes
impl TryFrom<SignedAction> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: SignedAction) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: SignedAction) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<StoreEntry> for SerializedBytes
impl TryFrom<StoreEntry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: StoreEntry) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: StoreEntry) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<StoreRecord> for SerializedBytes
impl TryFrom<StoreRecord> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: StoreRecord) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: StoreRecord) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<StringWrap> for SerializedBytes
impl TryFrom<StringWrap> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: StringWrap) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: StringWrap) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<TypedPath> for SerializedBytes
impl TryFrom<TypedPath> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: TypedPath) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: TypedPath) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<U32Wrap> for SerializedBytes
impl TryFrom<U32Wrap> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: U32Wrap) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: U32Wrap) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<UiEntry> for SerializedBytes
impl TryFrom<UiEntry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: UiEntry) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: UiEntry) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<Update> for SerializedBytes
impl TryFrom<Update> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: Update) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: Update) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<UpdateAction> for SerializedBytes
impl TryFrom<UpdateAction> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: UpdateAction) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: UpdateAction) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<ValidateCallbackResult> for SerializedBytes
impl TryFrom<ValidateCallbackResult> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: ValidateCallbackResult,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: ValidateCallbackResult, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<VerifySignature> for SerializedBytes
impl TryFrom<VerifySignature> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: VerifySignature) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: VerifySignature) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<Warrant> for SerializedBytes
impl TryFrom<Warrant> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: Warrant) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: Warrant) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<WebAppEntry> for SerializedBytes
impl TryFrom<WebAppEntry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: WebAppEntry) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: WebAppEntry) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<WebAppPackageEntry> for SerializedBytes
impl TryFrom<WebAppPackageEntry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: WebAppPackageEntry,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: WebAppPackageEntry, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<WebAppPackageVersionEntry> for SerializedBytes
impl TryFrom<WebAppPackageVersionEntry> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: WebAppPackageVersionEntry,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: WebAppPackageVersionEntry, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<WeighInput> for SerializedBytes
impl TryFrom<WeighInput> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: WeighInput) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: WeighInput) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<X25519PubKey> for SerializedBytes
impl TryFrom<X25519PubKey> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: X25519PubKey) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: X25519PubKey) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<X25519XSalsa20Poly1305Decrypt> for SerializedBytes
impl TryFrom<X25519XSalsa20Poly1305Decrypt> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: X25519XSalsa20Poly1305Decrypt,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: X25519XSalsa20Poly1305Decrypt, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<X25519XSalsa20Poly1305Encrypt> for SerializedBytes
impl TryFrom<X25519XSalsa20Poly1305Encrypt> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: X25519XSalsa20Poly1305Encrypt,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: X25519XSalsa20Poly1305Encrypt, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<XSalsa20Poly1305Decrypt> for SerializedBytes
impl TryFrom<XSalsa20Poly1305Decrypt> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: XSalsa20Poly1305Decrypt,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: XSalsa20Poly1305Decrypt, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<XSalsa20Poly1305Encrypt> for SerializedBytes
impl TryFrom<XSalsa20Poly1305Encrypt> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: XSalsa20Poly1305Encrypt,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: XSalsa20Poly1305Encrypt, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<XSalsa20Poly1305KeyRef> for SerializedBytes
impl TryFrom<XSalsa20Poly1305KeyRef> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: XSalsa20Poly1305KeyRef,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: XSalsa20Poly1305KeyRef, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<XSalsa20Poly1305Nonce> for SerializedBytes
impl TryFrom<XSalsa20Poly1305Nonce> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: XSalsa20Poly1305Nonce,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: XSalsa20Poly1305Nonce, ) -> Result<SerializedBytes, SerializedBytesError>
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: XSalsa20Poly1305SharedSecretExport,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: XSalsa20Poly1305SharedSecretExport, ) -> Result<SerializedBytes, SerializedBytesError>
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: XSalsa20Poly1305SharedSecretIngest,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: XSalsa20Poly1305SharedSecretIngest, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<YamlProperties> for SerializedBytes
impl TryFrom<YamlProperties> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: YamlProperties) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: YamlProperties) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<ZomeCallResponse> for SerializedBytes
impl TryFrom<ZomeCallResponse> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(
t: ZomeCallResponse,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: ZomeCallResponse, ) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<ZomeIndex> for SerializedBytes
impl TryFrom<ZomeIndex> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: ZomeIndex) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: ZomeIndex) -> Result<SerializedBytes, SerializedBytesError>
Source§impl TryFrom<ZomeInfo> for SerializedBytes
impl TryFrom<ZomeInfo> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
Source§fn try_from(t: ZomeInfo) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: ZomeInfo) -> Result<SerializedBytes, SerializedBytesError>
impl Eq for SerializedBytes
impl StructuralPartialEq for SerializedBytes
Auto Trait Implementations§
impl Freeze for SerializedBytes
impl RefUnwindSafe for SerializedBytes
impl Send for SerializedBytes
impl Sync for SerializedBytes
impl Unpin for SerializedBytes
impl UnwindSafe for SerializedBytes
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
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
Source§impl<T> CallHasher for T
impl<T> CallHasher for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.