pub struct ModelBundlePlanFile {
pub remote_path: String,
pub local_path: String,
pub present_locally: bool,
pub required: bool,
pub media_type: String,
}Expand description
One planned model bundle file.
Fields§
§remote_path: String§local_path: String§present_locally: bool§required: bool§media_type: StringTrait Implementations§
Source§impl Clone for ModelBundlePlanFile
impl Clone for ModelBundlePlanFile
Source§fn clone(&self) -> ModelBundlePlanFile
fn clone(&self) -> ModelBundlePlanFile
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 ModelBundlePlanFile
impl Debug for ModelBundlePlanFile
Source§impl<'de> Deserialize<'de> for ModelBundlePlanFile
impl<'de> Deserialize<'de> for ModelBundlePlanFile
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 ModelBundlePlanFile
Source§impl PartialEq for ModelBundlePlanFile
impl PartialEq for ModelBundlePlanFile
Source§fn eq(&self, other: &ModelBundlePlanFile) -> bool
fn eq(&self, other: &ModelBundlePlanFile) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ModelBundlePlanFile
impl Serialize for ModelBundlePlanFile
impl StructuralPartialEq for ModelBundlePlanFile
Auto Trait Implementations§
impl Freeze for ModelBundlePlanFile
impl RefUnwindSafe for ModelBundlePlanFile
impl Send for ModelBundlePlanFile
impl Sync for ModelBundlePlanFile
impl Unpin for ModelBundlePlanFile
impl UnsafeUnpin for ModelBundlePlanFile
impl UnwindSafe for ModelBundlePlanFile
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