pub struct DynamicFieldOutput {
pub name: DynamicFieldName,
pub value: Option<(TypeTag, Vec<u8>)>,
pub value_as_json: Option<Value>,
}
Expand description
The output of a dynamic field query, that includes the name, value, and value’s json representation.
Fields§
§name: DynamicFieldName
The name of the dynamic field
value: Option<(TypeTag, Vec<u8>)>
The dynamic field value typename and bcs
value_as_json: Option<Value>
The json representation of the dynamic field value object
Implementations§
Source§impl DynamicFieldOutput
impl DynamicFieldOutput
Sourcepub fn deserialize_name<T: DeserializeOwned>(
&self,
expected_type: &TypeTag,
) -> Result<T>
pub fn deserialize_name<T: DeserializeOwned>( &self, expected_type: &TypeTag, ) -> Result<T>
Deserialize the name of the dynamic field into the specified type.
Sourcepub fn deserialize_value<T: DeserializeOwned>(
&self,
expected_type: &TypeTag,
) -> Result<T>
pub fn deserialize_value<T: DeserializeOwned>( &self, expected_type: &TypeTag, ) -> Result<T>
Deserialize the value of the dynamic field into the specified type.
Trait Implementations§
Source§impl Clone for DynamicFieldOutput
impl Clone for DynamicFieldOutput
Source§fn clone(&self) -> DynamicFieldOutput
fn clone(&self) -> DynamicFieldOutput
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for DynamicFieldOutput
impl RefUnwindSafe for DynamicFieldOutput
impl Send for DynamicFieldOutput
impl Sync for DynamicFieldOutput
impl Unpin for DynamicFieldOutput
impl UnwindSafe for DynamicFieldOutput
Blanket Implementations§
§impl<U> As for U
impl<U> As for U
§fn as_<T>(self) -> Twhere
T: CastFrom<U>,
fn as_<T>(self) -> Twhere
T: CastFrom<U>,
Casts
self
to type T
. The semantics of numeric casting with the as
operator are followed, so <T as As>::as_::<U>
can be used in the same way as T as U
for numeric conversions. Read moreSource§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