Struct activitystreams_types::object::properties::ProfileProperties[][src]

pub struct ProfileProperties {
    pub describes: Value,
}

Define all the properties of the Profile type as described by the Activity Streams vocabulary.

Fields

On a Profile object, the describes property identifies the object described by the Profile.

  • Range: Object
  • Functional: true

Methods

impl ProfileProperties
[src]

Retrieve a value of type T from the given struct

This method deserializes the item from JSON, so be wary of using this a lot.

Possible errors from this method are Error::Deserialize

Set a value of type T in the given struct

This method serializes the item to JSON, so be wary of using this a lot.

Possible errors from this method are Error::Serialize

Trait Implementations

impl Clone for ProfileProperties
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ProfileProperties
[src]

Formats the value using the given formatter. Read more

impl Default for ProfileProperties
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations