pub struct SCDynamicStore(/* private fields */);
Expand description

Access to the key-value pairs in the dynamic store of a running system.

Use the SCDynamicStoreBuilder to create instances of this.

Implementations§

source§

impl SCDynamicStore

source

pub fn get_keys<S: Into<CFString>>( &self, pattern: S, ) -> Option<CFArray<CFString>>

Returns the keys that represent the current dynamic store entries that match the specified pattern. Or None if an error occured.

pattern - A regular expression pattern used to match the dynamic store keys.

source

pub fn get_proxies(&self) -> Option<CFDictionary<CFString, CFType>>

Returns the key-value pairs that represent the current internet proxy settings. Or None if no proxy settings have been defined or if an error occured.

source

pub fn get<S: Into<CFString>>(&self, key: S) -> Option<CFPropertyList>

If the given key exists in the store, the associated value is returned.

Use CFPropertyList::downcast_into to cast the result into the correct type.

source

pub fn set<S: Into<CFString>, V: CFPropertyListSubClass>( &self, key: S, value: V, ) -> bool

Sets the value of the given key. Overwrites existing values. Returns true on success, false on failure.

source

pub fn set_raw<S: Into<CFString>>(&self, key: S, value: &CFPropertyList) -> bool

Sets the value of the given key. Overwrites existing values. Returns true on success, false on failure.

source

pub fn remove<S: Into<CFString>>(&self, key: S) -> bool

Removes the value of the specified key from the dynamic store.

source

pub fn set_notification_keys<T1, T2>( &self, keys: &CFArray<T1>, patterns: &CFArray<T2>, ) -> bool

Specifies a set of keys and key patterns that should be monitored for changes.

source

pub fn create_run_loop_source(&self) -> CFRunLoopSource

Creates a run loop source object that can be added to the application’s run loop.

Trait Implementations§

source§

impl Clone for SCDynamicStore

source§

fn clone(&self) -> SCDynamicStore

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Drop for SCDynamicStore

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl PartialEq for SCDynamicStore

source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · 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 TCFType for SCDynamicStore

§

type Ref = *const __SCDynamicStore

The reference type wrapped inside this type.
source§

fn as_concrete_TypeRef(&self) -> SCDynamicStoreRef

Returns the object as its concrete TypeRef.
source§

unsafe fn wrap_under_get_rule(reference: SCDynamicStoreRef) -> Self

Returns an instance of the object, wrapping the underlying CFTypeRef subclass. Use this when following Core Foundation’s “Get Rule”. The reference count is bumped.
source§

fn as_CFTypeRef(&self) -> CFTypeRef

Returns the object as a raw CFTypeRef. The reference count is not adjusted.
source§

unsafe fn wrap_under_create_rule(reference: SCDynamicStoreRef) -> Self

Returns an instance of the object, wrapping the underlying CFTypeRef subclass. Use this when following Core Foundation’s “Create Rule”. The reference count is not bumped.
source§

fn type_id() -> CFTypeID

Returns the type ID for this class.
source§

fn as_CFType(&self) -> CFType

Returns the object as a wrapped CFType. The reference count is incremented by one.
source§

fn into_CFType(self) -> CFType
where Self: Sized,

Returns the object as a wrapped CFType. Consumes self and avoids changing the reference count.
source§

fn retain_count(&self) -> isize

Returns the reference count of the object. It is unwise to do anything other than test whether the return value of this method is greater than zero.
source§

fn type_of(&self) -> usize

Returns the type ID of this object.
source§

fn show(&self)

Writes a debugging version of this object on standard error.
source§

fn instance_of<OtherCFType>(&self) -> bool
where OtherCFType: TCFType,

Returns true if this value is an instance of another type.
source§

impl<'a> ToVoid<SCDynamicStore> for &'a SCDynamicStore

source§

impl ToVoid<SCDynamicStore> for SCDynamicStoreRef

source§

impl ToVoid<SCDynamicStore> for SCDynamicStore

source§

impl ConcreteCFType for SCDynamicStore

source§

impl Eq for SCDynamicStore

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, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FromMutVoid for T
where T: TCFType,

source§

unsafe fn from_mut_void<'a>(x: *mut c_void) -> ItemMutRef<'a, T>

source§

impl<T> FromVoid for T
where T: TCFType,

source§

unsafe fn from_void<'a>(x: *const c_void) -> ItemRef<'a, T>

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,

§

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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.