pub enum TcompInstruction {
Show 21 variants
TcompNoop(TcompNoop),
WithdrawFees(WithdrawFees),
Buy(Buy),
BuySpl(BuySpl),
BuyCore(BuyCore),
List(List),
Delist(Delist),
Edit(Edit),
ListCore(ListCore),
DelistCore(DelistCore),
Bid(Bid),
CancelBid(CancelBid),
CloseExpiredBid(CloseExpiredBid),
CloseExpiredListing(CloseExpiredListing),
CloseExpiredListingCore(CloseExpiredListingCore),
TakeBidMetaHash(TakeBidMetaHash),
TakeBidFullMeta(TakeBidFullMeta),
TakeBidLegacy(TakeBidLegacy),
TakeBidT22(TakeBidT22),
TakeBidWns(TakeBidWns),
TakeBidCore(TakeBidCore),
}Variants§
TcompNoop(TcompNoop)
WithdrawFees(WithdrawFees)
Buy(Buy)
BuySpl(BuySpl)
BuyCore(BuyCore)
List(List)
Delist(Delist)
Edit(Edit)
ListCore(ListCore)
DelistCore(DelistCore)
Bid(Bid)
CancelBid(CancelBid)
CloseExpiredBid(CloseExpiredBid)
CloseExpiredListing(CloseExpiredListing)
CloseExpiredListingCore(CloseExpiredListingCore)
TakeBidMetaHash(TakeBidMetaHash)
TakeBidFullMeta(TakeBidFullMeta)
TakeBidLegacy(TakeBidLegacy)
TakeBidT22(TakeBidT22)
TakeBidWns(TakeBidWns)
TakeBidCore(TakeBidCore)
Implementations§
Source§impl TcompInstruction
impl TcompInstruction
pub fn get_instruction_type(&self) -> TcompInstructionType
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<'de> Deserialize<'de> for TcompInstruction
impl<'de> Deserialize<'de> for TcompInstruction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for TcompInstruction
impl Hash for TcompInstruction
Source§impl PartialEq for TcompInstruction
impl PartialEq for TcompInstruction
Source§impl Serialize for TcompInstruction
impl Serialize 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