pub struct PositionBuilder { /* private fields */ }Expand description
A builder-pattern type to construct Position objects.
Implementations§
Source§impl PositionBuilder
impl PositionBuilder
pub fn area(self, area: Area) -> Self
pub fn area_set(self, area_set: bool) -> Self
pub fn column(self, column: u32) -> Self
pub fn column_set(self, column_set: bool) -> Self
pub fn depth(self, depth: u32) -> Self
pub fn depth_set(self, depth_set: bool) -> Self
pub fn row(self, row: u32) -> Self
pub fn row_set(self, row_set: bool) -> Self
Auto Trait Implementations§
impl Freeze for PositionBuilder
impl RefUnwindSafe for PositionBuilder
impl !Send for PositionBuilder
impl !Sync for PositionBuilder
impl Unpin for PositionBuilder
impl UnwindSafe for PositionBuilder
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