pub enum PlayDateMetadataAssets<T> {
List(Vec<String>),
Map(HashMap<String, T>),
}Variants§
List(Vec<String>)
List of paths to include.
Map(HashMap<String, T>)
Rules & queries used to resolve paths to include.
Implementations§
Trait Implementations§
source§impl<T: Clone> Clone for PlayDateMetadataAssets<T>
impl<T: Clone> Clone for PlayDateMetadataAssets<T>
source§fn clone(&self) -> PlayDateMetadataAssets<T>
fn clone(&self) -> PlayDateMetadataAssets<T>
Returns a copy 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<T: Debug> Debug for PlayDateMetadataAssets<T>
impl<T: Debug> Debug for PlayDateMetadataAssets<T>
source§impl<T> Default for PlayDateMetadataAssets<T>
impl<T> Default for PlayDateMetadataAssets<T>
source§impl<'de, T> Deserialize<'de> for PlayDateMetadataAssets<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for PlayDateMetadataAssets<T>where
T: Deserialize<'de>,
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<T> RefUnwindSafe for PlayDateMetadataAssets<T>where
T: RefUnwindSafe,
impl<T> Send for PlayDateMetadataAssets<T>where
T: Send,
impl<T> Sync for PlayDateMetadataAssets<T>where
T: Sync,
impl<T> Unpin for PlayDateMetadataAssets<T>where
T: Unpin,
impl<T> UnwindSafe for PlayDateMetadataAssets<T>where
T: UnwindSafe,
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