[][src]Struct activitystreams::collection::Collection

pub struct Collection<Kind> { /* fields omitted */ }

A Collection is a subtype of Object that represents ordered or unordered sets of Object or Link instances.

The items within a Collection can be ordered or unordered. The OrderedCollection type MAY be used to identify a Collection whose items are always ordered. In the JSON serialization, the unordered items of a Collection are represented using the items property while ordered items are represented using the orderedItems property.

Implementations

impl<Kind> Collection<Kind>[src]

pub fn new() -> Self where
    Kind: Default
[src]

Create a new Collection

use activitystreams::collection::Collection;

let collection = Collection::<String>::new();

Trait Implementations

impl<Kind> AsBase<Kind> for Collection<Kind>[src]

impl<Kind> AsCollection<Kind> for Collection<Kind>[src]

impl<Kind> AsObject<Kind> for Collection<Kind>[src]

impl<Kind> Base for Collection<Kind>[src]

impl<Kind: Clone> Clone for Collection<Kind>[src]

impl<Kind> Collection for Collection<Kind>[src]

impl<Kind: Debug> Debug for Collection<Kind>[src]

impl<'de, Kind> Deserialize<'de> for Collection<Kind> where
    Kind: Deserialize<'de>, 
[src]

impl<Kind> Extends<Kind> for Collection<Kind>[src]

type Error = Error

The erro produced must be a StdError

impl<Kind> Object for Collection<Kind>[src]

impl<Kind> Serialize for Collection<Kind> where
    Kind: Serialize
[src]

impl<Kind> TryFrom<Collection<Kind>> for Object<Kind>[src]

type Error = Error

The type returned in the event of a conversion error.

impl<Kind> TryFrom<Object<Kind>> for Collection<Kind>[src]

type Error = Error

The type returned in the event of a conversion error.

impl<Kind> UnparsedMut for Collection<Kind>[src]

Auto Trait Implementations

impl<Kind> RefUnwindSafe for Collection<Kind> where
    Kind: RefUnwindSafe

impl<Kind> Send for Collection<Kind> where
    Kind: Send

impl<Kind> Sync for Collection<Kind> where
    Kind: Sync

impl<Kind> Unpin for Collection<Kind> where
    Kind: Unpin

impl<Kind> UnwindSafe for Collection<Kind> where
    Kind: UnwindSafe

Blanket Implementations

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

impl<T, Kind> BaseExt<Kind> for T where
    T: AsBase<Kind>, 
[src]

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

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

impl<T, Kind> CollectionExt<Kind> for T where
    T: AsCollection<Kind>, 
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T, Kind> ExtendsExt<Kind> for T where
    T: Extends<Kind>,
    <T as Extends<Kind>>::Error: From<Error>, 
[src]

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

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

impl<T, Kind> ObjectExt<Kind> for T where
    T: AsObject<Kind>, 
[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.

impl<T> UnparsedMutExt for T where
    T: UnparsedMut
[src]