Skip to main content

SCShareableContent

Struct SCShareableContent 

Source
pub struct SCShareableContent(/* private fields */);

Implementations§

Source§

impl SCShareableContent

Source

pub fn get() -> Result<Self, SCError>

Get shareable content (displays, windows, and applications)

§Examples
use screencapturekit::shareable_content::SCShareableContent;

let content = SCShareableContent::get()?;
println!("Found {} displays", content.displays().len());
println!("Found {} windows", content.windows().len());
println!("Found {} apps", content.applications().len());
§Errors

Returns an error if screen recording permission is not granted.

Source

pub fn create() -> SCShareableContentOptions

Create options builder for customizing shareable content retrieval

§Examples
use screencapturekit::shareable_content::SCShareableContent;

let content = SCShareableContent::create()
    .with_on_screen_windows_only(true)
    .with_exclude_desktop_windows(true)
    .get()?;
Source

pub fn displays(&self) -> Vec<SCDisplay>

Get all available displays

§Examples
use screencapturekit::shareable_content::SCShareableContent;

let content = SCShareableContent::get()?;
for display in content.displays() {
    println!("Display: {}x{}", display.width(), display.height());
}
Source

pub fn windows(&self) -> Vec<SCWindow>

Get all available windows

§Examples
use screencapturekit::shareable_content::SCShareableContent;

let content = SCShareableContent::get()?;
for window in content.windows() {
    if let Some(title) = window.title() {
        println!("Window: {}", title);
    }
}
Source

pub fn applications(&self) -> Vec<SCRunningApplication>

Get all available running applications

§Examples
use screencapturekit::shareable_content::SCShareableContent;

let content = SCShareableContent::get()?;
for app in content.applications() {
    println!("App: {} (PID: {})", app.application_name(), app.process_id());
}
Source

pub fn snapshot(&self) -> Option<ContentSnapshot>

Fetch every display, window, and running application in a single batched FFI round-trip — see ContentSnapshot for what’s returned.

Use this in any code path that reads more than one attribute per window / display / app. The per-element accessors (displays, windows, applications + per-attribute methods like SCWindow::title / SCWindow::frame) issue one FFI call each — a typical “list windows with title and frame” walk on a 220-window system measured at ~73 µs. snapshot() collapses that to ~5 µs (~15× faster) by going through the bridge’s packed FFI surface and copying every attribute into Rust-side plain data structs in a single pass.

Returns None if the bridge couldn’t fit the data into the static scratch buffers (extremely unlikely — limits are 64 displays, 4096 windows, 1024 apps with a 256 KiB string pool).

Source§

impl SCShareableContent

Source

pub fn current_process_is_available() -> bool

Whether SCShareableContent::current_process is usable on this machine: the crate must have been compiled against a macOS 14.4+ SDK and be running on macOS 14.4 or later.

Use this to gate UI or pick a fallback strategy before paying for the call.

Source

pub fn current_process() -> Result<Self, SCError>

Get shareable content for the current process only (macOS 14.4+)

This retrieves content that the current process can capture without requiring user authorization via TCC (Transparency, Consent, and Control).

§Errors

Returns SCError::FeatureNotAvailable when running on macOS older than 14.4, or when the crate was built against an SDK that predates the API. There is deliberately no fallback to the system-wide content query: that requires screen-recording consent and returns every window on the machine, which callers of this method are specifically trying to avoid.

Otherwise returns an error if retrieval fails.

Trait Implementations§

Source§

impl Clone for SCShareableContent

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SCShareableContent

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for SCShareableContent

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Drop for SCShareableContent

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

fn pin_drop(self: Pin<&mut Self>)

🔬This is a nightly-only experimental API. (pin_ergonomics)
Execute the destructor for this type, but different to Drop::drop, it requires self to be pinned. Read more
Source§

impl Eq for SCShareableContent

Source§

impl Hash for SCShareableContent

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for SCShareableContent

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Send for SCShareableContent

Source§

impl Sync for SCShareableContent

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
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.