Enum waves_rust::model::order::Order
source · Variants§
Implementations§
source§impl Order
impl Order
pub fn v3(
chain_id: u8,
timestamp: u64,
sender: PublicKey,
fee: Amount,
order_type: OrderType,
amount: Amount,
price: Amount,
matcher: PublicKey,
expiration: u64
) -> Self
pub fn v4(
chain_id: u8,
timestamp: u64,
sender: PublicKey,
fee: Amount,
order_type: OrderType,
amount: Amount,
price: Amount,
matcher: PublicKey,
expiration: u64,
price_mode: PriceMode
) -> Self
pub fn id(&self) -> Result<Id>
pub fn chain_id(&self) -> u8
pub fn order_type(&self) -> OrderType
pub fn version(&self) -> u8
pub fn sender(&self) -> PublicKey
pub fn amount(&self) -> Amount
pub fn price(&self) -> Amount
pub fn fee(&self) -> Amount
pub fn matcher(&self) -> PublicKey
pub fn timestamp(&self) -> u64
pub fn expiration(&self) -> u64
pub fn sign(&self, private_key: &PrivateKey) -> Result<SignedOrder>
pub fn default_expiration(current_time: u64) -> u64
Trait Implementations§
source§impl PartialEq<Order> for Order
impl PartialEq<Order> for Order
source§impl TryFrom<&Order> for ProtoOrder
impl TryFrom<&Order> for ProtoOrder
impl Eq for Order
impl StructuralEq for Order
impl StructuralPartialEq for Order
Auto Trait Implementations§
impl RefUnwindSafe for Order
impl Send for Order
impl Sync for Order
impl Unpin for Order
impl UnwindSafe for Order
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request