pub enum EntryDefsCallbackResult {
Defs(EntryDefs),
}Variants§
Trait Implementations§
Source§impl CallbackResult for EntryDefsCallbackResult
impl CallbackResult for EntryDefsCallbackResult
Source§fn is_definitive(&self) -> bool
fn is_definitive(&self) -> bool
if a callback result is definitive we should halt any further iterations over remaining
calls e.g. over sparse names or subsequent zomes
typically a clear failure is definitive but success and missing dependencies are not
in the case of success or missing deps, a subsequent callback could give us a definitive
answer like a fail, and we don’t want to over-optimise wasm calls and miss a clear failure
Source§fn try_from_wasm_error(
wasm_error: WasmError,
) -> Result<EntryDefsCallbackResult, WasmError>
fn try_from_wasm_error( wasm_error: WasmError, ) -> Result<EntryDefsCallbackResult, WasmError>
when a WasmError is returned from a callback (e.g. via
? operator) it might mean either: Read moreSource§impl Clone for EntryDefsCallbackResult
impl Clone for EntryDefsCallbackResult
Source§fn clone(&self) -> EntryDefsCallbackResult
fn clone(&self) -> EntryDefsCallbackResult
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 EntryDefsCallbackResult
impl Debug for EntryDefsCallbackResult
Source§impl<'de> Deserialize<'de> for EntryDefsCallbackResult
impl<'de> Deserialize<'de> for EntryDefsCallbackResult
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<EntryDefsCallbackResult, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<EntryDefsCallbackResult, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EntryDefsCallbackResult
impl PartialEq for EntryDefsCallbackResult
Source§impl Serialize for EntryDefsCallbackResult
impl Serialize for EntryDefsCallbackResult
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<&EntryDefsCallbackResult> for SerializedBytes
impl TryFrom<&EntryDefsCallbackResult> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(
t: &EntryDefsCallbackResult,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &EntryDefsCallbackResult, ) -> Result<SerializedBytes, SerializedBytesError>
Performs the conversion.
Source§impl TryFrom<EntryDefsCallbackResult> for SerializedBytes
impl TryFrom<EntryDefsCallbackResult> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(
t: EntryDefsCallbackResult,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: EntryDefsCallbackResult, ) -> Result<SerializedBytes, SerializedBytesError>
Performs the conversion.
Source§impl TryFrom<SerializedBytes> for EntryDefsCallbackResult
impl TryFrom<SerializedBytes> for EntryDefsCallbackResult
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(
sb: SerializedBytes,
) -> Result<EntryDefsCallbackResult, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<EntryDefsCallbackResult, SerializedBytesError>
Performs the conversion.
impl StructuralPartialEq for EntryDefsCallbackResult
Auto Trait Implementations§
impl Freeze for EntryDefsCallbackResult
impl RefUnwindSafe for EntryDefsCallbackResult
impl Send for EntryDefsCallbackResult
impl Sync for EntryDefsCallbackResult
impl Unpin for EntryDefsCallbackResult
impl UnsafeUnpin for EntryDefsCallbackResult
impl UnwindSafe for EntryDefsCallbackResult
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