pub struct Builder(/* private fields */);
Expand description
The context builder.
Implementations§
Source§impl Builder
impl Builder
Sourcepub fn enable_polygon_mode_line(self) -> Self
pub fn enable_polygon_mode_line(self) -> Self
Enables line polygon mode for current backend.
Sourcepub fn enable_polygon_mode_point(self) -> Self
pub fn enable_polygon_mode_point(self) -> Self
Enables point polygon mode for current backend.
Trait Implementations§
Source§impl IntoFuture for Builder
impl IntoFuture for Builder
Source§type Output = Result<Context, FailedMakeContext>
type Output = Result<Context, FailedMakeContext>
The output that the future will produce on completion.
Source§type IntoFuture = Pin<Box<dyn Future<Output = <Builder as IntoFuture>::Output>>>
type IntoFuture = Pin<Box<dyn Future<Output = <Builder as IntoFuture>::Output>>>
Which kind of future are we turning this into?
Source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl Freeze for Builder
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
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