pub struct MkDict {
pub border_color: Option<Vec<f32>>,
pub background_color: Option<Vec<f32>>,
pub caption: Option<String>,
pub rollover_caption: Option<String>,
pub alternate_caption: Option<String>,
pub text_position: Option<u32>,
pub rotation: Option<u32>,
}Expand description
Widget appearance characteristics (/MK dictionary).
Fields§
§border_color: Option<Vec<f32>>Border color (/BC).
background_color: Option<Vec<f32>>Background color (/BG).
caption: Option<String>Normal caption (/CA).
rollover_caption: Option<String>Rollover caption (/RC).
alternate_caption: Option<String>Alternate caption (/AC).
text_position: Option<u32>Icon/caption layout (/TP).
rotation: Option<u32>Rotation (/R).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MkDict
impl RefUnwindSafe for MkDict
impl Send for MkDict
impl Sync for MkDict
impl Unpin for MkDict
impl UnsafeUnpin for MkDict
impl UnwindSafe for MkDict
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more