pub struct InventoryExport {
pub id: u64,
pub status: Option<String>,
pub created_ts: Option<String>,
pub finished_ts: Option<String>,
pub url: Option<String>,
pub download_url: Option<String>,
pub filename: Option<String>,
pub extra: ExtraFields,
}Fields§
§id: u64§status: Option<String>§created_ts: Option<String>§finished_ts: Option<String>§url: Option<String>§download_url: Option<String>§filename: Option<String>§extra: ExtraFieldsTrait Implementations§
Source§impl Clone for InventoryExport
impl Clone for InventoryExport
Source§fn clone(&self) -> InventoryExport
fn clone(&self) -> InventoryExport
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 InventoryExport
impl Debug for InventoryExport
Source§impl<'de> Deserialize<'de> for InventoryExport
impl<'de> Deserialize<'de> for InventoryExport
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 InventoryExport
impl RefUnwindSafe for InventoryExport
impl Send for InventoryExport
impl Sync for InventoryExport
impl Unpin for InventoryExport
impl UnsafeUnpin for InventoryExport
impl UnwindSafe for InventoryExport
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