pub struct StackPack {
pub descriptions: Option<HashMap<String, String>>,
pub icon_data_url: Option<String>,
pub id: Option<String>,
pub title: Option<String>,
}Expand description
Message containing Stack Pack information.
This type is not used in any activity, and only used as part of another schema.
Fields§
§descriptions: Option<HashMap<String, String>>The stack pack advice strings.
icon_data_url: Option<String>The stack pack icon data uri.
id: Option<String>The stack pack id.
title: Option<String>The stack pack title.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StackPack
impl<'de> Deserialize<'de> for StackPack
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 Part for StackPack
Auto Trait Implementations§
impl Freeze for StackPack
impl RefUnwindSafe for StackPack
impl Send for StackPack
impl Sync for StackPack
impl Unpin for StackPack
impl UnwindSafe for StackPack
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