pub struct TasteDownloadOutput {
pub uri: String,
pub cache_path: String,
pub name: Option<String>,
pub synopsis: Option<String>,
pub parent: Option<String>,
pub taste: Option<TasteVerdict>,
pub remote_tastes: Option<Value>,
}Expand description
Result of taste (download mode — no verdict supplied).
Fields§
§uri: String§cache_path: String§name: Option<String>§synopsis: Option<String>§parent: Option<String>§taste: Option<TasteVerdict>§remote_tastes: Option<Value>Trait Implementations§
Source§impl Clone for TasteDownloadOutput
impl Clone for TasteDownloadOutput
Source§fn clone(&self) -> TasteDownloadOutput
fn clone(&self) -> TasteDownloadOutput
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 TasteDownloadOutput
impl Debug for TasteDownloadOutput
Source§impl<'de> Deserialize<'de> for TasteDownloadOutput
impl<'de> Deserialize<'de> for TasteDownloadOutput
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 TasteDownloadOutput
impl RefUnwindSafe for TasteDownloadOutput
impl Send for TasteDownloadOutput
impl Sync for TasteDownloadOutput
impl Unpin for TasteDownloadOutput
impl UnsafeUnpin for TasteDownloadOutput
impl UnwindSafe for TasteDownloadOutput
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