[][src]Struct ffsend_api::api::data::OwnedData

pub struct OwnedData<D> { /* fields omitted */ }

An owned data structure, that wraps generic data. This structure is used to send owned data to the Send server. This owned data is authenticated using an owner_token, which this structure manages.

Methods

impl<D> OwnedData<D> where
    D: Serialize
[src]

pub fn new(owner_token: String, inner: D) -> Self[src]

Constructor.

pub fn from(inner: D, file: &RemoteFile) -> Result<Self, Error>[src]

Wrap the given data structure with this owned data structure. A file must be given, having a set owner token.

Trait Implementations

impl<D: Debug> Debug for OwnedData<D>[src]

impl<D> Serialize for OwnedData<D> where
    D: Serialize
[src]

Auto Trait Implementations

impl<D> Send for OwnedData<D> where
    D: Send

impl<D> Unpin for OwnedData<D> where
    D: Unpin

impl<D> Sync for OwnedData<D> where
    D: Sync

impl<D> UnwindSafe for OwnedData<D> where
    D: UnwindSafe

impl<D> RefUnwindSafe for OwnedData<D> where
    D: RefUnwindSafe

Blanket Implementations

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

impl<T> Typeable for T where
    T: Any

impl<T> Same<T> for T

type Output = T

Should always be Self