pub struct RawPhoenixHeader {
pub signature: Signature,
pub instruction: u8,
pub sequence_number: u64,
pub timestamp: i64,
pub slot: u64,
pub market: Pubkey,
pub signer: Pubkey,
}
Fields§
§signature: Signature
§instruction: u8
§sequence_number: u64
§timestamp: i64
§slot: u64
§market: Pubkey
§signer: Pubkey
Trait Implementations§
source§impl Clone for RawPhoenixHeader
impl Clone for RawPhoenixHeader
source§fn clone(&self) -> RawPhoenixHeader
fn clone(&self) -> RawPhoenixHeader
Returns a copy 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 RawPhoenixHeader
impl Debug for RawPhoenixHeader
source§impl Default for RawPhoenixHeader
impl Default for RawPhoenixHeader
source§fn default() -> RawPhoenixHeader
fn default() -> RawPhoenixHeader
Returns the “default value” for a type. Read more
source§impl PartialEq<RawPhoenixHeader> for RawPhoenixHeader
impl PartialEq<RawPhoenixHeader> for RawPhoenixHeader
source§fn eq(&self, other: &RawPhoenixHeader) -> bool
fn eq(&self, other: &RawPhoenixHeader) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for RawPhoenixHeader
impl Eq for RawPhoenixHeader
impl StructuralEq for RawPhoenixHeader
impl StructuralPartialEq for RawPhoenixHeader
Auto Trait Implementations§
impl RefUnwindSafe for RawPhoenixHeader
impl Send for RawPhoenixHeader
impl Sync for RawPhoenixHeader
impl Unpin for RawPhoenixHeader
impl UnwindSafe for RawPhoenixHeader
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<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.