Struct quantmath::data::fixings::RcFixingTable[][src]

pub struct RcFixingTable(_);

Create a new type for a Rc so we can implement serialize and deserialize functions for it.

Methods

impl RcFixingTable
[src]

Methods from Deref<Target = FixingTable>

Tries to get a fixing for the given instrument and date. Returns None if it was absent today, or an error if it was absent in the past.

Tries to get a fixing for the given instrument and date. Returns None if the fixing is not found.

Tries to get an entire fixing curve by id. Return None if there is none.

Gets the date to which fixings are known. Fixings on this date may or may not be known.

Trait Implementations

impl Clone for RcFixingTable
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RcFixingTable
[src]

Formats the value using the given formatter. Read more

impl Deref for RcFixingTable
[src]

The resulting type after dereferencing.

Dereferences the value.

impl Serialize for RcFixingTable
[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for RcFixingTable
[src]

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations