AsyncSCScreenshotManager

Struct AsyncSCScreenshotManager 

Source
pub struct AsyncSCScreenshotManager;
Expand description

Async wrapper for SCScreenshotManager

Provides async methods for single-frame screenshot capture. Executor-agnostic - works with any async runtime.

Requires the macos_14_0 feature flag.

§Examples

use screencapturekit::async_api::{AsyncSCShareableContent, AsyncSCScreenshotManager};
use screencapturekit::stream::configuration::SCStreamConfiguration;
use screencapturekit::stream::content_filter::SCContentFilter;

let content = AsyncSCShareableContent::get().await?;
let display = &content.displays()[0];
let filter = SCContentFilter::builder().display(display).exclude_windows(&[]).build();
let mut config = SCStreamConfiguration::default();
config.set_width(1920);
config.set_height(1080);

let image = AsyncSCScreenshotManager::capture_image(&filter, &config).await?;
println!("Screenshot: {}x{}", image.width(), image.height());

Implementations§

Source§

impl AsyncSCScreenshotManager

Source

pub fn capture_image( content_filter: &SCContentFilter, configuration: &SCStreamConfiguration, ) -> AsyncScreenshotFuture<CGImage>

Capture a single screenshot as a CGImage asynchronously

§Errors

Returns an error if:

  • Screen recording permission is not granted
  • The capture fails for any reason
Source

pub fn capture_sample_buffer( content_filter: &SCContentFilter, configuration: &SCStreamConfiguration, ) -> AsyncScreenshotFuture<CMSampleBuffer>

Capture a single screenshot as a CMSampleBuffer asynchronously

§Errors

Returns an error if:

  • Screen recording permission is not granted
  • The capture fails for any reason

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.