pub struct Iteminfo {
pub genre: Option<ElementVec<Genre>>,
pub series: Option<ElementVec<Series>>,
pub maker: Option<ElementVec<Maker>>,
pub actor: Option<ElementVec<Actor>>,
pub actress: Option<ElementVec<Actress>>,
pub director: Option<ElementVec<Director>>,
pub author: Option<ElementVec<Author>>,
pub label: Option<ElementVec<Label>>,
pub type: Option<ElementVec<Type>>,
pub color: Option<ElementVec<Color>>,
pub size: Option<ElementVec<Size>>,
}Fields§
§genre: Option<ElementVec<Genre>>§series: Option<ElementVec<Series>>§maker: Option<ElementVec<Maker>>§actor: Option<ElementVec<Actor>>§actress: Option<ElementVec<Actress>>§director: Option<ElementVec<Director>>§label: Option<ElementVec<Label>>§type: Option<ElementVec<Type>>§color: Option<ElementVec<Color>>§size: Option<ElementVec<Size>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Iteminfo
impl<'de> Deserialize<'de> for Iteminfo
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 Iteminfo
impl RefUnwindSafe for Iteminfo
impl Send for Iteminfo
impl Sync for Iteminfo
impl Unpin for Iteminfo
impl UnwindSafe for Iteminfo
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