pub struct ScopedZomeTypesSet {
pub entries: ScopedZomeTypes<EntryDefIndex>,
pub links: ScopedZomeTypes<LinkType>,
}Expand description
The set of EntryDefIndex and LinkTypes in scope for the calling zome.
Fields§
§entries: ScopedZomeTypes<EntryDefIndex>All the entry EntryDefIndexs in scope for this zome.
links: ScopedZomeTypes<LinkType>All the entry LinkTypes in scope for this zome.
Trait Implementations§
Source§impl Clone for ScopedZomeTypesSet
impl Clone for ScopedZomeTypesSet
Source§fn clone(&self) -> ScopedZomeTypesSet
fn clone(&self) -> ScopedZomeTypesSet
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ScopedZomeTypesSet
impl Debug for ScopedZomeTypesSet
Source§impl Default for ScopedZomeTypesSet
impl Default for ScopedZomeTypesSet
Source§fn default() -> ScopedZomeTypesSet
fn default() -> ScopedZomeTypesSet
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScopedZomeTypesSet
impl<'de> Deserialize<'de> for ScopedZomeTypesSet
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ScopedZomeTypesSet, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ScopedZomeTypesSet, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ScopedZomeTypesSet
impl PartialEq for ScopedZomeTypesSet
Source§impl Serialize for ScopedZomeTypesSet
impl Serialize for ScopedZomeTypesSet
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,
Serialize this value into the given Serde serializer. Read more
Source§impl TryFrom<&ScopedZomeTypesSet> for SerializedBytes
impl TryFrom<&ScopedZomeTypesSet> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(
t: &ScopedZomeTypesSet,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &ScopedZomeTypesSet, ) -> Result<SerializedBytes, SerializedBytesError>
Performs the conversion.
Source§impl TryFrom<ScopedZomeTypesSet> for SerializedBytes
impl TryFrom<ScopedZomeTypesSet> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(
t: ScopedZomeTypesSet,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: ScopedZomeTypesSet, ) -> Result<SerializedBytes, SerializedBytesError>
Performs the conversion.
Source§impl TryFrom<SerializedBytes> for ScopedZomeTypesSet
impl TryFrom<SerializedBytes> for ScopedZomeTypesSet
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(
sb: SerializedBytes,
) -> Result<ScopedZomeTypesSet, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<ScopedZomeTypesSet, SerializedBytesError>
Performs the conversion.
impl StructuralPartialEq for ScopedZomeTypesSet
Auto Trait Implementations§
impl Freeze for ScopedZomeTypesSet
impl RefUnwindSafe for ScopedZomeTypesSet
impl Send for ScopedZomeTypesSet
impl Sync for ScopedZomeTypesSet
impl Unpin for ScopedZomeTypesSet
impl UnsafeUnpin for ScopedZomeTypesSet
impl UnwindSafe for ScopedZomeTypesSet
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more