pub struct MsgBackRuntime {Show 21 fields
pub projection: Option<MsgBackUiProjection>,
pub waku_sprite: Option<SpriteId>,
pub filter_sprite: Option<SpriteId>,
pub text_sprite: Option<SpriteId>,
pub waku_image: Option<ImageId>,
pub filter_image: Option<ImageId>,
pub solid_filter_image: Option<ImageId>,
pub solid_filter_color: Option<(u8, u8, u8, u8)>,
pub text_image: Option<ImageId>,
pub cached_waku_file: Option<String>,
pub cached_filter_file: Option<String>,
pub text_dirty: bool,
pub text_entries: Vec<MsgBackTextRuntime>,
pub separators: Vec<MsgBackButtonRuntime>,
pub koe_buttons: Vec<MsgBackButtonRuntime>,
pub load_buttons: Vec<MsgBackButtonRuntime>,
pub close_btn: MsgBackButtonRuntime,
pub msg_up_btn: MsgBackButtonRuntime,
pub msg_down_btn: MsgBackButtonRuntime,
pub slider: MsgBackButtonRuntime,
pub ex_buttons: Vec<MsgBackButtonRuntime>,
}Fields§
§projection: Option<MsgBackUiProjection>§waku_sprite: Option<SpriteId>§filter_sprite: Option<SpriteId>§text_sprite: Option<SpriteId>§waku_image: Option<ImageId>§filter_image: Option<ImageId>§solid_filter_image: Option<ImageId>§solid_filter_color: Option<(u8, u8, u8, u8)>§text_image: Option<ImageId>§cached_waku_file: Option<String>§cached_filter_file: Option<String>§text_dirty: bool§text_entries: Vec<MsgBackTextRuntime>§separators: Vec<MsgBackButtonRuntime>§close_btn: MsgBackButtonRuntime§msg_up_btn: MsgBackButtonRuntime§msg_down_btn: MsgBackButtonRuntime§slider: MsgBackButtonRuntimeTrait Implementations§
Source§impl Debug for MsgBackRuntime
impl Debug for MsgBackRuntime
Source§impl Default for MsgBackRuntime
impl Default for MsgBackRuntime
Source§fn default() -> MsgBackRuntime
fn default() -> MsgBackRuntime
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MsgBackRuntime
impl RefUnwindSafe for MsgBackRuntime
impl Send for MsgBackRuntime
impl Sync for MsgBackRuntime
impl Unpin for MsgBackRuntime
impl UnsafeUnpin for MsgBackRuntime
impl UnwindSafe for MsgBackRuntime
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.