pub struct InlineZome<T = IntegrityZomeMarker> { /* private fields */ }
Expand description
An “inline” zome definition in pure Rust, as opposed to a zome defined in Wasm.
Implementations§
Source§impl<T> InlineZome<T>
impl<T> InlineZome<T>
pub fn functions(&self) -> Vec<FunctionName>
Sourcepub fn function<F, I, O>(self, name: &str, f: F) -> InlineZome<T>where
F: Fn(Box<dyn HostFnApiT>, I) -> Result<O, InlineZomeError> + 'static + Send + Sync,
I: DeserializeOwned + Debug,
O: Serialize + Debug,
pub fn function<F, I, O>(self, name: &str, f: F) -> InlineZome<T>where
F: Fn(Box<dyn HostFnApiT>, I) -> Result<O, InlineZomeError> + 'static + Send + Sync,
I: DeserializeOwned + Debug,
O: Serialize + Debug,
Define a new zome function or callback with the given name
Sourcepub fn callback<F, I, O>(self, name: &str, f: F) -> InlineZome<T>where
F: Fn(Box<dyn HostFnApiT>, I) -> Result<O, InlineZomeError> + 'static + Send + Sync,
I: DeserializeOwned + Debug,
O: Serialize + Debug,
👎Deprecated: Alias for function
pub fn callback<F, I, O>(self, name: &str, f: F) -> InlineZome<T>where
F: Fn(Box<dyn HostFnApiT>, I) -> Result<O, InlineZomeError> + 'static + Send + Sync,
I: DeserializeOwned + Debug,
O: Serialize + Debug,
function
Alias for function
Sourcepub fn maybe_call(
&self,
api: Box<dyn HostFnApiT>,
name: &FunctionName,
input: ExternIO,
) -> Result<Option<ExternIO>, InlineZomeError>
pub fn maybe_call( &self, api: Box<dyn HostFnApiT>, name: &FunctionName, input: ExternIO, ) -> Result<Option<ExternIO>, InlineZomeError>
Make a call to an inline zome callback. If the callback doesn’t exist, return None.
Sourcepub fn set_global(self, name: impl Into<String>, val: u8) -> InlineZome<T>
pub fn set_global(self, name: impl Into<String>, val: u8) -> InlineZome<T>
Set a global value for this zome.
Source§impl InlineZome
impl InlineZome
Sourcepub fn new<S, E>(uuid: S, entry_defs: E, num_link_types: u8) -> InlineZome
pub fn new<S, E>(uuid: S, entry_defs: E, num_link_types: u8) -> InlineZome
Create a new integrity zome with the given network seed
Sourcepub fn new_unique<E>(entry_defs: E, num_link_types: u8) -> InlineZomewhere
E: IntoIterator<Item = EntryDef>,
pub fn new_unique<E>(entry_defs: E, num_link_types: u8) -> InlineZomewhere
E: IntoIterator<Item = EntryDef>,
Create a new integrity zome with a unique random network seed
Source§impl InlineZome<CoordinatorZomeMarker>
impl InlineZome<CoordinatorZomeMarker>
Sourcepub fn new<S>(uuid: S) -> InlineZome<CoordinatorZomeMarker>
pub fn new<S>(uuid: S) -> InlineZome<CoordinatorZomeMarker>
Create a new coordinator zome with the given network seed
Sourcepub fn new_unique() -> InlineZome<CoordinatorZomeMarker>
pub fn new_unique() -> InlineZome<CoordinatorZomeMarker>
Create a new coordinator zome with a unique random network seed
Trait Implementations§
Source§impl<T> Debug for InlineZome<T>where
T: Debug,
impl<T> Debug for InlineZome<T>where
T: Debug,
Source§impl From<InlineZome<CoordinatorZomeMarker>> for CoordinatorZomeDef
impl From<InlineZome<CoordinatorZomeMarker>> for CoordinatorZomeDef
Source§fn from(iz: InlineZome<CoordinatorZomeMarker>) -> CoordinatorZomeDef
fn from(iz: InlineZome<CoordinatorZomeMarker>) -> CoordinatorZomeDef
Converts to this type from the input type.
Source§impl From<InlineZome<CoordinatorZomeMarker>> for ZomeDef
impl From<InlineZome<CoordinatorZomeMarker>> for ZomeDef
Source§fn from(iz: InlineZome<CoordinatorZomeMarker>) -> ZomeDef
fn from(iz: InlineZome<CoordinatorZomeMarker>) -> ZomeDef
Converts to this type from the input type.
Source§impl From<InlineZome> for IntegrityZomeDef
impl From<InlineZome> for IntegrityZomeDef
Source§fn from(iz: InlineZome) -> IntegrityZomeDef
fn from(iz: InlineZome) -> IntegrityZomeDef
Converts to this type from the input type.
Source§impl From<InlineZome> for ZomeDef
impl From<InlineZome> for ZomeDef
Source§fn from(iz: InlineZome) -> ZomeDef
fn from(iz: InlineZome) -> ZomeDef
Converts to this type from the input type.
Source§impl<T> Hash for InlineZome<T>where
T: Hash,
impl<T> Hash for InlineZome<T>where
T: Hash,
Source§impl<T> InlineZomeT for InlineZome<T>where
T: Debug,
impl<T> InlineZomeT for InlineZome<T>where
T: Debug,
Source§fn functions(&self) -> Vec<FunctionName>
fn functions(&self) -> Vec<FunctionName>
Get the functions for this
InlineZome
.Source§fn maybe_call(
&self,
api: Box<dyn HostFnApiT>,
name: &FunctionName,
input: ExternIO,
) -> Result<Option<ExternIO>, InlineZomeError>
fn maybe_call( &self, api: Box<dyn HostFnApiT>, name: &FunctionName, input: ExternIO, ) -> Result<Option<ExternIO>, InlineZomeError>
Make a call to an inline zome function.
If the function doesn’t exist, return None.
Source§impl<T> Ord for InlineZome<T>where
T: Ord,
impl<T> Ord for InlineZome<T>where
T: Ord,
Source§fn cmp(&self, other: &InlineZome<T>) -> Ordering
fn cmp(&self, other: &InlineZome<T>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<T> PartialEq for InlineZome<T>where
T: PartialEq,
impl<T> PartialEq for InlineZome<T>where
T: PartialEq,
Source§impl<T> PartialOrd for InlineZome<T>where
T: PartialOrd,
impl<T> PartialOrd for InlineZome<T>where
T: PartialOrd,
impl<T> Eq for InlineZome<T>where
T: Eq,
Auto Trait Implementations§
impl<T> Freeze for InlineZome<T>
impl<T = IntegrityZomeMarker> !RefUnwindSafe for InlineZome<T>
impl<T> Send for InlineZome<T>where
T: Send,
impl<T> Sync for InlineZome<T>where
T: Sync,
impl<T> Unpin for InlineZome<T>where
T: Unpin,
impl<T = IntegrityZomeMarker> !UnwindSafe for InlineZome<T>
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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
Source§impl<T> CallHasher for T
impl<T> CallHasher for T
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
Compare self to
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
Compare self to
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> ⓘ
Converts
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> ⓘ
Converts
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>
Gets the layout of the type.
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>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
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
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.Source§impl<T> Upcastable for T
impl<T> Upcastable for T
Source§fn upcast_any_ref(&self) -> &(dyn Any + 'static)
fn upcast_any_ref(&self) -> &(dyn Any + 'static)
upcast ref
Source§fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)
upcast mut ref