pub struct Source {
pub fd: Option<i64>,
pub tid: Option<String>,
pub pchain: Option<String>,
pub schain: Option<SupplyChain>,
pub ext: Option<Value>,
}Expand description
Describes the source of the bid request upstream from the exchange.
Fields§
§fd: Option<i64>Entity responsible for final sale decision (0 = exchange, 1 = upstream source). Recommended.
tid: Option<String>Transaction ID common across participants. Recommended.
pchain: Option<String>Payment ID chain string. Recommended.
schain: Option<SupplyChain>SupplyChain object. Recommended.
ext: Option<Value>Placeholder for exchange-specific extensions.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Source
impl<'de> Deserialize<'de> for Source
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
impl StructuralPartialEq for Source
Auto Trait Implementations§
impl Freeze for Source
impl RefUnwindSafe for Source
impl Send for Source
impl Sync for Source
impl Unpin for Source
impl UnsafeUnpin for Source
impl UnwindSafe for Source
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