pub struct Abigen;
Implementations§
Source§impl Abigen
impl Abigen
Sourcepub fn generate(targets: Vec<AbigenTarget>, no_std: bool) -> Result<TokenStream>
pub fn generate(targets: Vec<AbigenTarget>, no_std: bool) -> Result<TokenStream>
Generate code which can be used to interact with the underlying contract, script or predicate in a type-safe manner.
§Arguments
targets
:AbigenTargets
detailing which ABI to generate bindings for, and of what nature (Contract, Script or Predicate).no_std
: don’t use the Rust std library.
Auto Trait Implementations§
impl Freeze for Abigen
impl RefUnwindSafe for Abigen
impl Send for Abigen
impl Sync for Abigen
impl Unpin for Abigen
impl UnwindSafe for Abigen
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> 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