[][src]Struct ironoxide::common::DeviceContext

pub struct DeviceContext { /* fields omitted */ }

Signing and encryption key pairs and metadata for a device.

Required to initialize the SDK with a set of device keys (see ironoxide::initialize).

Can be generated by calling generate_new_device and passing the result to DeviceContext::from.

Implementations

impl DeviceContext[src]

pub fn new(
    account_id: UserId,
    segment_id: usize,
    device_private_key: PrivateKey,
    signing_private_key: DeviceSigningKeyPair
) -> DeviceContext
[src]

Constructs a DeviceContext from its components.

To instead generate a new DeviceContext for the user, call generate_new_device and pass the result to DeviceContext::from.

pub fn account_id(&self) -> &UserId[src]

ID of the device's owner

pub fn segment_id(&self) -> usize[src]

ID of the segment

pub fn signing_private_key(&self) -> &DeviceSigningKeyPair[src]

Private signing key of the device

pub fn device_private_key(&self) -> &PrivateKey[src]

Private encryption key of the device

Trait Implementations

impl Clone for DeviceContext[src]

impl Debug for DeviceContext[src]

impl<'de> Deserialize<'de> for DeviceContext[src]

impl Eq for DeviceContext[src]

impl From<DeviceAddResult> for DeviceContext[src]

impl Hash for DeviceContext[src]

impl PartialEq<DeviceContext> for DeviceContext[src]

impl Serialize for DeviceContext[src]

impl StructuralEq for DeviceContext[src]

impl StructuralPartialEq for DeviceContext[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,