pub struct StashTab {
pub id: String,
pub parent: Option<String>,
pub name: String,
pub type: String,
pub index: Option<usize>,
pub metadata: StashTabMetadata,
pub children: Option<Vec<Self>>,
pub items: Option<Vec<Item>>,
}Fields§
§id: String§parent: Option<String>§name: String§type: String§index: Option<usize>§metadata: StashTabMetadata§children: Option<Vec<Self>>§items: Option<Vec<Item>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for StashTab
impl<'de> Deserialize<'de> for StashTab
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 StashTab
impl RefUnwindSafe for StashTab
impl Send for StashTab
impl Sync for StashTab
impl Unpin for StashTab
impl UnwindSafe for StashTab
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