pub struct Banner {
pub magic_word: [u8; 4],
pub graphical_data: [u8; 6144],
pub game_name: String,
pub developer: String,
pub full_game_title: String,
pub full_developer_name: String,
pub description: String,
}Fields§
§magic_word: [u8; 4]§graphical_data: [u8; 6144]§game_name: String§developer: String§full_game_title: String§full_developer_name: String§description: StringAuto Trait Implementations§
impl Freeze for Banner
impl RefUnwindSafe for Banner
impl Send for Banner
impl Sync for Banner
impl Unpin 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