pub struct Banner {
pub title: BannerTitle,
pub images: BannerImages,
pub keyframes: Option<Vec<BannerKeyframe>>,
/* private fields */
}Expand description
ROM banner.
Fields§
§title: BannerTitleGame title in different languages.
images: BannerImagesIcon to show on the home screen.
keyframes: Option<Vec<BannerKeyframe>>Keyframes for animated icons.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Banner
impl<'de> Deserialize<'de> for Banner
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 Banner
impl RefUnwindSafe for Banner
impl Send for Banner
impl Sync for Banner
impl Unpin for Banner
impl UnsafeUnpin for Banner
impl UnwindSafe for Banner
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