pub struct RecipeDesktop {
pub name: Option<String>,
pub generic_name: Option<String>,
pub categories: Option<Vec<String>>,
pub terminal: Option<bool>,
pub comment: Option<String>,
}Fields§
§name: Option<String>§generic_name: Option<String>§categories: Option<Vec<String>>§terminal: Option<bool>§comment: Option<String>Trait Implementations§
Source§impl Clone for RecipeDesktop
impl Clone for RecipeDesktop
Source§fn clone(&self) -> RecipeDesktop
fn clone(&self) -> RecipeDesktop
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 RecipeDesktop
impl Debug for RecipeDesktop
Source§impl Default for RecipeDesktop
impl Default for RecipeDesktop
Source§fn default() -> RecipeDesktop
fn default() -> RecipeDesktop
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecipeDesktop
impl<'de> Deserialize<'de> for RecipeDesktop
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 RecipeDesktop
impl RefUnwindSafe for RecipeDesktop
impl Send for RecipeDesktop
impl Sync for RecipeDesktop
impl Unpin for RecipeDesktop
impl UnsafeUnpin for RecipeDesktop
impl UnwindSafe for RecipeDesktop
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