pub struct WarehousePremium {
pub variety_id: String,
pub variety_name: String,
pub valid_date: String,
pub wh_code: String,
pub wh_name: String,
pub avg_agio: String,
pub wh_group_abbr: String,
pub brand_abbr: String,
}Expand description
Warehouse premium data.
Fields§
§variety_id: StringVariety ID.
variety_name: StringVariety name.
valid_date: StringValid date.
wh_code: StringWarehouse code.
wh_name: StringWarehouse name.
avg_agio: StringAverage premium (元/吨).
wh_group_abbr: StringWarehouse group abbreviation.
brand_abbr: StringBrand abbreviation.
Trait Implementations§
Source§impl Clone for WarehousePremium
impl Clone for WarehousePremium
Source§fn clone(&self) -> WarehousePremium
fn clone(&self) -> WarehousePremium
Returns a duplicate 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 WarehousePremium
impl Debug for WarehousePremium
Source§impl<'de> Deserialize<'de> for WarehousePremium
impl<'de> Deserialize<'de> for WarehousePremium
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
Auto Trait Implementations§
impl Freeze for WarehousePremium
impl RefUnwindSafe for WarehousePremium
impl Send for WarehousePremium
impl Sync for WarehousePremium
impl Unpin for WarehousePremium
impl UnwindSafe for WarehousePremium
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