pub struct PublisherDetail {
pub publisher_id: u16,
pub dataset: String,
pub venue: String,
pub description: String,
}Available on crate feature
historical only.Expand description
The details about a publisher.
Fields§
§publisher_id: u16The publisher ID assigned by Databento, which denotes the dataset and venue.
dataset: StringThe dataset code for the publisher.
venue: StringThe venue for the publisher.
description: StringThe publisher description.
Trait Implementations§
Source§impl Clone for PublisherDetail
impl Clone for PublisherDetail
Source§fn clone(&self) -> PublisherDetail
fn clone(&self) -> PublisherDetail
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PublisherDetail
impl Debug for PublisherDetail
Source§impl<'de> Deserialize<'de> for PublisherDetail
impl<'de> Deserialize<'de> for PublisherDetail
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 Eq for PublisherDetail
Source§impl PartialEq for PublisherDetail
impl PartialEq for PublisherDetail
impl StructuralPartialEq for PublisherDetail
Auto Trait Implementations§
impl Freeze for PublisherDetail
impl RefUnwindSafe for PublisherDetail
impl Send for PublisherDetail
impl Sync for PublisherDetail
impl Unpin for PublisherDetail
impl UnsafeUnpin for PublisherDetail
impl UnwindSafe for PublisherDetail
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