pub struct ModelBundleFile {
pub remote_path: String,
pub local_path: String,
pub size_bytes: u64,
}Expand description
Data type for model bundle file.
Fields§
§remote_path: StringThe remote path value.
local_path: StringThe local path value.
size_bytes: u64The size bytes value.
Trait Implementations§
Source§impl Clone for ModelBundleFile
impl Clone for ModelBundleFile
Source§fn clone(&self) -> ModelBundleFile
fn clone(&self) -> ModelBundleFile
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 ModelBundleFile
impl Debug for ModelBundleFile
Source§impl<'de> Deserialize<'de> for ModelBundleFile
impl<'de> Deserialize<'de> for ModelBundleFile
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 ModelBundleFile
Source§impl PartialEq for ModelBundleFile
impl PartialEq for ModelBundleFile
Source§fn eq(&self, other: &ModelBundleFile) -> bool
fn eq(&self, other: &ModelBundleFile) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ModelBundleFile
impl Serialize for ModelBundleFile
impl StructuralPartialEq for ModelBundleFile
Auto Trait Implementations§
impl Freeze for ModelBundleFile
impl RefUnwindSafe for ModelBundleFile
impl Send for ModelBundleFile
impl Sync for ModelBundleFile
impl Unpin for ModelBundleFile
impl UnsafeUnpin for ModelBundleFile
impl UnwindSafe for ModelBundleFile
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