Struct security_framework::item::ItemAddOptions

source ·
pub struct ItemAddOptions {
    pub value: ItemAddValue,
    pub account_name: Option<CFString>,
    pub access_group: Option<CFString>,
    pub comment: Option<CFString>,
    pub description: Option<CFString>,
    pub label: Option<CFString>,
    pub service: Option<CFString>,
    pub location: Option<Location>,
}
Expand description

Builder-pattern struct for specifying options for add_item (SecAddItem wrapper).

When finished populating options, call to_dictionary() and pass the resulting CFDictionary to add_item.

Fields§

§value: ItemAddValue

The value (by ref or data) of the item to add, required.

§account_name: Option<CFString>

Optional kSecAttrAccount attribute.

§access_group: Option<CFString>

Optional kSecAttrAccessGroup attribute.

§comment: Option<CFString>

Optional kSecAttrComment attribute.

§description: Option<CFString>

Optional kSecAttrDescription attribute.

§label: Option<CFString>

Optional kSecAttrLabel attribute.

§service: Option<CFString>

Optional kSecAttrService attribute.

§location: Option<Location>

Optional keychain location.

Implementations§

source§

impl ItemAddOptions

source

pub fn new(value: ItemAddValue) -> Self

Specifies the item to add.

source

pub fn set_account_name(&mut self, account_name: impl AsRef<str>) -> &mut Self

Specifies the kSecAttrAccount attribute.

source

pub fn set_access_group(&mut self, access_group: impl AsRef<str>) -> &mut Self

Specifies the kSecAttrAccessGroup attribute.

source

pub fn set_comment(&mut self, comment: impl AsRef<str>) -> &mut Self

Specifies the kSecAttrComment attribute.

source

pub fn set_description(&mut self, description: impl AsRef<str>) -> &mut Self

Specifies the kSecAttrDescription attribute.

source

pub fn set_label(&mut self, label: impl AsRef<str>) -> &mut Self

Specifies the kSecAttrLabel attribute.

source

pub fn set_location(&mut self, location: Location) -> &mut Self

Specifies which keychain to add the item to.

source

pub fn set_service(&mut self, service: impl AsRef<str>) -> &mut Self

Specifies the kSecAttrService attribute.

source

pub fn to_dictionary(&self) -> CFDictionary

Populates a CFDictionary to be passed to

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

§

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.