[][src]Struct security_framework::os::macos::transform::SecTransform

pub struct SecTransform(_);

A type representing a transform.

Implementations

impl SecTransform[src]

pub fn set_attribute<T>(
    &mut self,
    key: &CFString,
    value: &T
) -> Result<(), CFError> where
    T: TCFType
[src]

Sets an attribute of the transform.

pub fn execute(&mut self) -> Result<CFType, CFError>[src]

Executes the transform.

The return type depends on the type of transform.

Trait Implementations

impl Clone for SecTransform[src]

impl ConcreteCFType for SecTransform[src]

impl Drop for SecTransform[src]

impl Eq for SecTransform[src]

impl PartialEq<SecTransform> for SecTransform[src]

impl Send for SecTransform[src]

impl Sync for SecTransform[src]

impl TCFType for SecTransform[src]

type Ref = SecTransformRef

The reference type wrapped inside this type.

impl<'a> ToVoid<SecTransform> for &'a SecTransform[src]

impl ToVoid<SecTransform> for SecTransform[src]

impl ToVoid<SecTransform> for SecTransformRef[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> FromMutVoid for T where
    T: TCFType
[src]

impl<T> FromVoid for T where
    T: TCFType
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.