pub struct MovegenTemplateInput {Show 16 fields
pub package_name: String,
pub module_name: String,
pub account_address: String,
pub named_address: String,
pub vk_alpha_g1: String,
pub vk_beta_g2: String,
pub vk_gamma_g2: String,
pub vk_delta_g2: String,
pub vk_gamma_abc_g1: Vec<String>,
pub vk_gamma_abc_g1_rendered: String,
pub proof_a: String,
pub proof_b: String,
pub proof_c: String,
pub public_inputs_bytes: Vec<String>,
pub public_inputs_rendered: String,
pub include_entry: bool,
}Fields§
§package_name: String§module_name: String§account_address: String§named_address: String§vk_alpha_g1: String§vk_beta_g2: String§vk_gamma_g2: String§vk_delta_g2: String§vk_gamma_abc_g1: Vec<String>§vk_gamma_abc_g1_rendered: String§proof_a: String§proof_b: String§proof_c: String§public_inputs_bytes: Vec<String>§public_inputs_rendered: String§include_entry: boolTrait Implementations§
Source§impl Debug for MovegenTemplateInput
impl Debug for MovegenTemplateInput
Auto Trait Implementations§
impl Freeze for MovegenTemplateInput
impl RefUnwindSafe for MovegenTemplateInput
impl Send for MovegenTemplateInput
impl Sync for MovegenTemplateInput
impl Unpin for MovegenTemplateInput
impl UnsafeUnpin for MovegenTemplateInput
impl UnwindSafe for MovegenTemplateInput
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> 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 more