pub struct Reader<'a> { /* private fields */ }Implementations§
Source§impl<'a> Reader<'a>
impl<'a> Reader<'a>
pub fn reborrow(&self) -> Reader<'_>
pub fn total_size(&self) -> Result<MessageSize>
pub fn get_id(self) -> Result<Reader<'a>>
pub fn has_id(&self) -> bool
pub fn get_raw_symbol(self) -> Result<Reader<'a>>
pub fn has_raw_symbol(&self) -> bool
pub fn get_asset_class(self) -> Result<AssetClass, NotInSchema>
pub fn get_exchange(self) -> Result<Reader<'a>>
pub fn has_exchange(&self) -> bool
pub fn get_underlying(self) -> Result<Reader<'a>>
pub fn has_underlying(&self) -> bool
pub fn get_option_kind(self) -> Result<OptionKind, NotInSchema>
pub fn get_strike_price(self) -> Result<Reader<'a>>
pub fn has_strike_price(&self) -> bool
pub fn get_activation_ns(self) -> Result<Reader<'a>>
pub fn has_activation_ns(&self) -> bool
pub fn get_expiration_ns(self) -> Result<Reader<'a>>
pub fn has_expiration_ns(&self) -> bool
pub fn get_currency(self) -> Result<Reader<'a>>
pub fn has_currency(&self) -> bool
pub fn get_price_precision(self) -> u8
pub fn get_price_increment(self) -> Result<Reader<'a>>
pub fn has_price_increment(&self) -> bool
pub fn get_size_increment(self) -> Result<Reader<'a>>
pub fn has_size_increment(&self) -> bool
pub fn get_size_precision(self) -> u8
pub fn get_multiplier(self) -> Result<Reader<'a>>
pub fn has_multiplier(&self) -> bool
pub fn get_lot_size(self) -> Result<Reader<'a>>
pub fn has_lot_size(&self) -> bool
pub fn get_margin_init(self) -> Result<Reader<'a>>
pub fn has_margin_init(&self) -> bool
pub fn get_margin_maint(self) -> Result<Reader<'a>>
pub fn has_margin_maint(&self) -> bool
pub fn get_maker_fee(self) -> Result<Reader<'a>>
pub fn has_maker_fee(&self) -> bool
pub fn get_taker_fee(self) -> Result<Reader<'a>>
pub fn has_taker_fee(&self) -> bool
pub fn get_max_quantity(self) -> Result<Reader<'a>>
pub fn has_max_quantity(&self) -> bool
pub fn get_min_quantity(self) -> Result<Reader<'a>>
pub fn has_min_quantity(&self) -> bool
pub fn get_max_price(self) -> Result<Reader<'a>>
pub fn has_max_price(&self) -> bool
pub fn get_min_price(self) -> Result<Reader<'a>>
pub fn has_min_price(&self) -> bool
pub fn get_tick_scheme(self) -> Result<Reader<'a>>
pub fn has_tick_scheme(&self) -> bool
pub fn get_info(self) -> Result<Reader<'a>>
pub fn has_info(&self) -> bool
pub fn get_ts_event(self) -> Result<Reader<'a>>
pub fn has_ts_event(&self) -> bool
pub fn get_ts_init(self) -> Result<Reader<'a>>
pub fn has_ts_init(&self) -> bool
Trait Implementations§
impl Copy for Reader<'_>
Source§impl<'a> From<StructReader<'a>> for Reader<'a>
impl<'a> From<StructReader<'a>> for Reader<'a>
Source§fn from(reader: StructReader<'a>) -> Self
fn from(reader: StructReader<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> FromPointerReader<'a> for Reader<'a>
impl<'a> FromPointerReader<'a> for Reader<'a>
fn get_from_pointer( reader: &PointerReader<'a>, default: Option<&'a [Word]>, ) -> Result<Self>
Source§impl<'a> IntoInternalStructReader<'a> for Reader<'a>
impl<'a> IntoInternalStructReader<'a> for Reader<'a>
fn into_internal_struct_reader(self) -> StructReader<'a>
Source§impl SetterInput<Owned> for Reader<'_>
impl SetterInput<Owned> for Reader<'_>
Source§fn set_pointer_builder(
pointer: PointerBuilder<'_>,
value: Self,
canonicalize: bool,
) -> Result<()>
fn set_pointer_builder( pointer: PointerBuilder<'_>, value: Self, canonicalize: bool, ) -> Result<()>
Copies the values from
input into builder, where builder
represents the backing memory of a <Receiver as Owned>::Builder. Read moreAuto Trait Implementations§
impl<'a> !RefUnwindSafe for Reader<'a>
impl<'a> !Send for Reader<'a>
impl<'a> !Sync for Reader<'a>
impl<'a> !UnwindSafe for Reader<'a>
impl<'a> Freeze for Reader<'a>
impl<'a> Unpin for Reader<'a>
impl<'a> UnsafeUnpin for Reader<'a>
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