pub struct ModVerifyParamsAPI {
pub actor: Address,
pub method: MethodNum,
pub data: RawBytes,
}Fields§
§actor: Address§method: MethodNum§data: RawBytesImplementations§
Source§impl ModVerifyParamsAPI
impl ModVerifyParamsAPI
pub fn serialize<__S>(
__self: &ModVerifyParams,
__serializer: __S,
) -> Result<__S::Ok, __S::Error>where
__S: Serializer,
Source§impl<'de> ModVerifyParamsAPI
impl<'de> ModVerifyParamsAPI
pub fn deserialize<__D>(
__deserializer: __D,
) -> Result<ModVerifyParams, __D::Error>where
__D: Deserializer<'de>,
Trait Implementations§
Source§impl Clone for ModVerifyParamsAPI
impl Clone for ModVerifyParamsAPI
Source§fn clone(&self) -> ModVerifyParamsAPI
fn clone(&self) -> ModVerifyParamsAPI
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 ModVerifyParamsAPI
impl Debug for ModVerifyParamsAPI
Source§impl PartialEq for ModVerifyParamsAPI
impl PartialEq for ModVerifyParamsAPI
impl StructuralPartialEq for ModVerifyParamsAPI
Auto Trait Implementations§
impl Freeze for ModVerifyParamsAPI
impl RefUnwindSafe for ModVerifyParamsAPI
impl Send for ModVerifyParamsAPI
impl Sync for ModVerifyParamsAPI
impl Unpin for ModVerifyParamsAPI
impl UnwindSafe for ModVerifyParamsAPI
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 more