pub struct ResolvedDialog {
pub min_width: f32,
pub max_width: f32,
pub min_height: f32,
pub max_height: f32,
pub content_padding: f32,
pub button_spacing: f32,
pub radius: f32,
pub icon_size: f32,
pub button_order: DialogButtonOrder,
pub title_font: ResolvedFontSpec,
}Expand description
Dialog sizing, spacing, button order, and title font.
Fields§
§min_width: f32§max_width: f32§min_height: f32§max_height: f32§content_padding: f32§radius: f32§icon_size: f32§title_font: ResolvedFontSpecTrait Implementations§
Source§impl Clone for ResolvedDialog
impl Clone for ResolvedDialog
Source§fn clone(&self) -> ResolvedDialog
fn clone(&self) -> ResolvedDialog
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ResolvedDialog
impl Debug for ResolvedDialog
Source§impl PartialEq for ResolvedDialog
impl PartialEq for ResolvedDialog
impl StructuralPartialEq for ResolvedDialog
Auto Trait Implementations§
impl Freeze for ResolvedDialog
impl RefUnwindSafe for ResolvedDialog
impl Send for ResolvedDialog
impl Sync for ResolvedDialog
impl Unpin for ResolvedDialog
impl UnsafeUnpin for ResolvedDialog
impl UnwindSafe for ResolvedDialog
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