pub struct CaptureBuilder { /* private fields */ }Expand description
Awaitable capture builder.
Implementations§
Source§impl CaptureBuilder
impl CaptureBuilder
Sourcepub const fn preserve_style(self, preserve: bool) -> Self
pub const fn preserve_style(self, preserve: bool) -> Self
Preserves row-major cells and style attributes in the capture result.
Trait Implementations§
Source§impl Clone for CaptureBuilder
impl Clone for CaptureBuilder
Source§fn clone(&self) -> CaptureBuilder
fn clone(&self) -> CaptureBuilder
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 CaptureBuilder
impl Debug for CaptureBuilder
Source§impl IntoFuture for CaptureBuilder
impl IntoFuture for CaptureBuilder
Source§type Output = Result<CapturedRegion, RmuxError>
type Output = Result<CapturedRegion, RmuxError>
The output that the future will produce on completion.
Source§type IntoFuture = Pin<Box<dyn Future<Output = <CaptureBuilder as IntoFuture>::Output> + Send>>
type IntoFuture = Pin<Box<dyn Future<Output = <CaptureBuilder as IntoFuture>::Output> + Send>>
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 !RefUnwindSafe for CaptureBuilder
impl !UnwindSafe for CaptureBuilder
impl Freeze for CaptureBuilder
impl Send for CaptureBuilder
impl Sync for CaptureBuilder
impl Unpin for CaptureBuilder
impl UnsafeUnpin for CaptureBuilder
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