pub struct MwndWindowRuntime {
pub pos: Option<(i32, i32)>,
pub size: Option<(u32, u32)>,
pub message_pos: Option<(i32, i32)>,
pub message_margin: Option<(i64, i64, i64, i64)>,
pub moji_cnt: Option<(i64, i64)>,
pub moji_size: Option<i64>,
pub moji_space: Option<(i64, i64)>,
pub extend_type: i64,
pub moji_color: Option<i64>,
pub shadow_color: Option<i64>,
pub fuchi_color: Option<i64>,
}Fields§
§pos: Option<(i32, i32)>§size: Option<(u32, u32)>§message_pos: Option<(i32, i32)>§message_margin: Option<(i64, i64, i64, i64)>§moji_cnt: Option<(i64, i64)>§moji_size: Option<i64>§moji_space: Option<(i64, i64)>§extend_type: i64§moji_color: Option<i64>§shadow_color: Option<i64>§fuchi_color: Option<i64>Trait Implementations§
Source§impl Debug for MwndWindowRuntime
impl Debug for MwndWindowRuntime
Source§impl Default for MwndWindowRuntime
impl Default for MwndWindowRuntime
Source§fn default() -> MwndWindowRuntime
fn default() -> MwndWindowRuntime
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MwndWindowRuntime
impl RefUnwindSafe for MwndWindowRuntime
impl Send for MwndWindowRuntime
impl Sync for MwndWindowRuntime
impl Unpin for MwndWindowRuntime
impl UnsafeUnpin for MwndWindowRuntime
impl UnwindSafe for MwndWindowRuntime
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.