pub enum DataPath {
DataPathVolume(Box<DataPathVolume>),
DataPathUpload(Box<DataPathUpload>),
}Variants§
DataPathVolume(Box<DataPathVolume>)
DataPathUpload(Box<DataPathUpload>)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DataPath
impl<'de> Deserialize<'de> for DataPath
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 StructuralPartialEq for DataPath
Auto Trait Implementations§
impl Freeze for DataPath
impl RefUnwindSafe for DataPath
impl Send for DataPath
impl Sync for DataPath
impl Unpin for DataPath
impl UnsafeUnpin for DataPath
impl UnwindSafe for DataPath
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