pub enum TcompInstruction {
Show 21 variants
Bid(Bid),
Buy(Buy),
BuyCore(BuyCore),
BuySpl(BuySpl),
CancelBid(CancelBid),
CloseExpiredBid(CloseExpiredBid),
CloseExpiredListing(CloseExpiredListing),
CloseExpiredListingCore(CloseExpiredListingCore),
Delist(Delist),
DelistCore(DelistCore),
Edit(Edit),
List(List),
ListCore(ListCore),
TakeBidCore(TakeBidCore),
TakeBidFullMeta(TakeBidFullMeta),
TakeBidLegacy(TakeBidLegacy),
TakeBidMetaHash(TakeBidMetaHash),
TakeBidT22(TakeBidT22),
TakeBidWns(TakeBidWns),
TcompNoop(TcompNoop),
WithdrawFees(WithdrawFees),
}Variants§
Bid(Bid)
Buy(Buy)
BuyCore(BuyCore)
BuySpl(BuySpl)
CancelBid(CancelBid)
CloseExpiredBid(CloseExpiredBid)
CloseExpiredListing(CloseExpiredListing)
CloseExpiredListingCore(CloseExpiredListingCore)
Delist(Delist)
DelistCore(DelistCore)
Edit(Edit)
List(List)
ListCore(ListCore)
TakeBidCore(TakeBidCore)
TakeBidFullMeta(TakeBidFullMeta)
TakeBidLegacy(TakeBidLegacy)
TakeBidMetaHash(TakeBidMetaHash)
TakeBidT22(TakeBidT22)
TakeBidWns(TakeBidWns)
TcompNoop(TcompNoop)
WithdrawFees(WithdrawFees)
Trait Implementations§
Source§impl Clone for TcompInstruction
impl Clone for TcompInstruction
Source§fn clone(&self) -> TcompInstruction
fn clone(&self) -> TcompInstruction
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 TcompInstruction
impl Debug for TcompInstruction
Source§impl Hash for TcompInstruction
impl Hash for TcompInstruction
Source§impl PartialEq for TcompInstruction
impl PartialEq for TcompInstruction
impl Eq for TcompInstruction
impl StructuralPartialEq for TcompInstruction
Auto Trait Implementations§
impl Freeze for TcompInstruction
impl RefUnwindSafe for TcompInstruction
impl Send for TcompInstruction
impl Sync for TcompInstruction
impl Unpin for TcompInstruction
impl UnwindSafe for TcompInstruction
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