pub struct PackageFile {
pub id: String,
pub package_id: String,
pub file_name: String,
pub size_bytes: u64,
pub created_at: String,
}Fields§
§id: String§package_id: String§file_name: String§size_bytes: u64§created_at: StringTrait Implementations§
Source§impl Clone for PackageFile
impl Clone for PackageFile
Source§fn clone(&self) -> PackageFile
fn clone(&self) -> PackageFile
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 PackageFile
impl Debug for PackageFile
Source§impl<'de> Deserialize<'de> for PackageFile
impl<'de> Deserialize<'de> for PackageFile
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 PackageFile
impl RefUnwindSafe for PackageFile
impl Send for PackageFile
impl Sync for PackageFile
impl Unpin for PackageFile
impl UnsafeUnpin for PackageFile
impl UnwindSafe for PackageFile
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