pub struct ManualLayout { /* private fields */ }Implementations§
Source§impl ManualLayout
impl ManualLayout
pub fn height(&self) -> Option<&Height>
pub fn get_height(&self) -> Option<&Height>
👎Deprecated since 3.0.0:
Use height()
pub fn height_mut(&mut self) -> Option<&mut Height>
pub fn get_height_mut(&mut self) -> Option<&mut Height>
👎Deprecated since 3.0.0:
Use height_mut()
pub fn set_height(&mut self, value: Height) -> &mut ManualLayout
pub fn height_mode(&self) -> Option<&HeightMode>
pub fn get_height_mode(&self) -> Option<&HeightMode>
👎Deprecated since 3.0.0:
Use height_mode()
pub fn height_mode_mut(&mut self) -> Option<&mut HeightMode>
pub fn get_height_mode_mut(&mut self) -> Option<&mut HeightMode>
👎Deprecated since 3.0.0:
Use height_mode_mut()
pub fn set_height_mode(&mut self, value: HeightMode) -> &mut ManualLayout
pub fn layout_target(&self) -> Option<&LayoutTarget>
pub fn get_layout_target(&self) -> Option<&LayoutTarget>
👎Deprecated since 3.0.0:
Use layout_target()
pub fn layout_target_mut(&mut self) -> Option<&mut LayoutTarget>
pub fn get_layout_target_mut(&mut self) -> Option<&mut LayoutTarget>
👎Deprecated since 3.0.0:
Use layout_target_mut()
pub fn set_layout_target(&mut self, value: LayoutTarget) -> &mut ManualLayout
pub fn left(&self) -> Option<&Left>
pub fn get_left(&self) -> Option<&Left>
👎Deprecated since 3.0.0:
Use left()
pub fn left_mut(&mut self) -> Option<&mut Left>
pub fn get_left_mut(&mut self) -> Option<&mut Left>
👎Deprecated since 3.0.0:
Use left_mut()
pub fn set_left(&mut self, value: Left) -> &mut ManualLayout
pub fn left_mode(&self) -> Option<&LeftMode>
pub fn get_left_mode(&self) -> Option<&LeftMode>
👎Deprecated since 3.0.0:
Use left_mode()
pub fn left_mode_mut(&mut self) -> Option<&mut LeftMode>
pub fn get_left_mode_mut(&mut self) -> Option<&mut LeftMode>
👎Deprecated since 3.0.0:
Use left_mode_mut()
pub fn set_left_mode(&mut self, value: LeftMode) -> &mut ManualLayout
pub fn top(&self) -> Option<&Top>
pub fn get_top(&self) -> Option<&Top>
👎Deprecated since 3.0.0:
Use top()
pub fn top_mut(&mut self) -> Option<&mut Top>
pub fn get_top_mut(&mut self) -> Option<&mut Top>
👎Deprecated since 3.0.0:
Use top_mut()
pub fn set_top(&mut self, value: Top) -> &mut ManualLayout
pub fn top_mode(&self) -> Option<&TopMode>
pub fn get_top_mode(&self) -> Option<&TopMode>
👎Deprecated since 3.0.0:
Use top_mode()
pub fn top_mode_mut(&mut self) -> Option<&mut TopMode>
pub fn get_top_mode_mut(&mut self) -> Option<&mut TopMode>
👎Deprecated since 3.0.0:
Use top_mode_mut()
pub fn set_top_mode(&mut self, value: TopMode) -> &mut ManualLayout
pub fn width(&self) -> Option<&Width>
pub fn get_width(&self) -> Option<&Width>
👎Deprecated since 3.0.0:
Use width()
pub fn width_mut(&mut self) -> Option<&mut Width>
pub fn get_width_mut(&mut self) -> Option<&mut Width>
👎Deprecated since 3.0.0:
Use width_mut()
pub fn set_width(&mut self, value: Width) -> &mut ManualLayout
pub fn width_mode(&self) -> Option<&WidthMode>
pub fn get_width_mode(&self) -> Option<&WidthMode>
👎Deprecated since 3.0.0:
Use width_mode()
pub fn width_mode_mut(&mut self) -> Option<&mut WidthMode>
pub fn get_width_mode_mut(&mut self) -> Option<&mut WidthMode>
👎Deprecated since 3.0.0:
Use width_mode_mut()
pub fn set_width_mode(&mut self, value: WidthMode) -> &mut ManualLayout
pub fn is_empty(&self) -> bool
Trait Implementations§
Source§impl Clone for ManualLayout
impl Clone for ManualLayout
Source§fn clone(&self) -> ManualLayout
fn clone(&self) -> ManualLayout
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ManualLayout
impl Debug for ManualLayout
Source§impl Default for ManualLayout
impl Default for ManualLayout
Source§fn default() -> ManualLayout
fn default() -> ManualLayout
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ManualLayout
impl RefUnwindSafe for ManualLayout
impl Send for ManualLayout
impl Sync for ManualLayout
impl Unpin for ManualLayout
impl UnsafeUnpin for ManualLayout
impl UnwindSafe for ManualLayout
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