Enum soroban_env_guest::xdr::OperationBody
pub enum OperationBody {
Show 25 variants
CreateAccount(CreateAccountOp),
Payment(PaymentOp),
PathPaymentStrictReceive(PathPaymentStrictReceiveOp),
ManageSellOffer(ManageSellOfferOp),
CreatePassiveSellOffer(CreatePassiveSellOfferOp),
SetOptions(SetOptionsOp),
ChangeTrust(ChangeTrustOp),
AllowTrust(AllowTrustOp),
AccountMerge(MuxedAccount),
Inflation,
ManageData(ManageDataOp),
BumpSequence(BumpSequenceOp),
ManageBuyOffer(ManageBuyOfferOp),
PathPaymentStrictSend(PathPaymentStrictSendOp),
CreateClaimableBalance(CreateClaimableBalanceOp),
ClaimClaimableBalance(ClaimClaimableBalanceOp),
BeginSponsoringFutureReserves(BeginSponsoringFutureReservesOp),
EndSponsoringFutureReserves,
RevokeSponsorship(RevokeSponsorshipOp),
Clawback(ClawbackOp),
ClawbackClaimableBalance(ClawbackClaimableBalanceOp),
SetTrustLineFlags(SetTrustLineFlagsOp),
LiquidityPoolDeposit(LiquidityPoolDepositOp),
LiquidityPoolWithdraw(LiquidityPoolWithdrawOp),
InvokeHostFunction(InvokeHostFunctionOp),
}
Variants
CreateAccount(CreateAccountOp)
Payment(PaymentOp)
PathPaymentStrictReceive(PathPaymentStrictReceiveOp)
ManageSellOffer(ManageSellOfferOp)
CreatePassiveSellOffer(CreatePassiveSellOfferOp)
SetOptions(SetOptionsOp)
ChangeTrust(ChangeTrustOp)
AllowTrust(AllowTrustOp)
AccountMerge(MuxedAccount)
Inflation
ManageData(ManageDataOp)
BumpSequence(BumpSequenceOp)
ManageBuyOffer(ManageBuyOfferOp)
PathPaymentStrictSend(PathPaymentStrictSendOp)
CreateClaimableBalance(CreateClaimableBalanceOp)
ClaimClaimableBalance(ClaimClaimableBalanceOp)
BeginSponsoringFutureReserves(BeginSponsoringFutureReservesOp)
EndSponsoringFutureReserves
RevokeSponsorship(RevokeSponsorshipOp)
Clawback(ClawbackOp)
ClawbackClaimableBalance(ClawbackClaimableBalanceOp)
SetTrustLineFlags(SetTrustLineFlagsOp)
LiquidityPoolDeposit(LiquidityPoolDepositOp)
LiquidityPoolWithdraw(LiquidityPoolWithdrawOp)
InvokeHostFunction(InvokeHostFunctionOp)
Implementations
impl OperationBody
impl OperationBody
pub const VARIANTS: [OperationType; 25] = [OperationType::CreateAccount, OperationType::Payment, OperationType::PathPaymentStrictReceive, OperationType::ManageSellOffer, OperationType::CreatePassiveSellOffer, OperationType::SetOptions, OperationType::ChangeTrust, OperationType::AllowTrust, OperationType::AccountMerge, OperationType::Inflation, OperationType::ManageData, OperationType::BumpSequence, OperationType::ManageBuyOffer, OperationType::PathPaymentStrictSend, OperationType::CreateClaimableBalance, OperationType::ClaimClaimableBalance, OperationType::BeginSponsoringFutureReserves, OperationType::EndSponsoringFutureReserves, OperationType::RevokeSponsorship, OperationType::Clawback, OperationType::ClawbackClaimableBalance, OperationType::SetTrustLineFlags, OperationType::LiquidityPoolDeposit, OperationType::LiquidityPoolWithdraw, OperationType::InvokeHostFunction]
pub const VARIANTS_STR: [&'static str; 25] = ["CreateAccount", "Payment", "PathPaymentStrictReceive", "ManageSellOffer", "CreatePassiveSellOffer", "SetOptions", "ChangeTrust", "AllowTrust", "AccountMerge", "Inflation", "ManageData", "BumpSequence", "ManageBuyOffer", "PathPaymentStrictSend", "CreateClaimableBalance", "ClaimClaimableBalance", "BeginSponsoringFutureReserves", "EndSponsoringFutureReserves", "RevokeSponsorship", "Clawback", "ClawbackClaimableBalance", "SetTrustLineFlags", "LiquidityPoolDeposit", "LiquidityPoolWithdraw", "InvokeHostFunction"]
pub const fn name(&self) -> &'static str
pub const fn discriminant(&self) -> OperationType
pub const fn variants() -> [OperationType; 25]
Trait Implementations
impl Clone for OperationBody
impl Clone for OperationBody
fn clone(&self) -> OperationBody
fn clone(&self) -> OperationBody
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Debug for OperationBody
impl Debug for OperationBody
impl Discriminant<OperationType> for OperationBody
impl Discriminant<OperationType> for OperationBody
fn discriminant(&self) -> OperationType
impl Hash for OperationBody
impl Hash for OperationBody
impl Name for OperationBody
impl Name for OperationBody
impl Ord for OperationBody
impl Ord for OperationBody
fn cmp(&self, other: &OperationBody) -> Ordering
fn cmp(&self, other: &OperationBody) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
Restrict a value to a certain interval. Read more
impl PartialEq<OperationBody> for OperationBody
impl PartialEq<OperationBody> for OperationBody
fn eq(&self, other: &OperationBody) -> bool
fn eq(&self, other: &OperationBody) -> bool
impl PartialOrd<OperationBody> for OperationBody
impl PartialOrd<OperationBody> for OperationBody
fn partial_cmp(&self, other: &OperationBody) -> Option<Ordering>
fn partial_cmp(&self, other: &OperationBody) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Variants<OperationType> for OperationBody
impl Variants<OperationType> for OperationBody
fn variants() -> Iter<'static, OperationType>
impl Eq for OperationBody
impl ReadXdr for OperationBody
impl StructuralEq for OperationBody
impl StructuralPartialEq for OperationBody
impl Union<OperationType> for OperationBody
impl WriteXdr for OperationBody
Auto Trait Implementations
impl RefUnwindSafe for OperationBody
impl Send for OperationBody
impl Sync for OperationBody
impl Unpin for OperationBody
impl UnwindSafe for OperationBody
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more