Struct json_api::doc::Object [] [src]

pub struct Object {
    pub attributes: Map,
    pub id: String,
    pub kind: Key,
    pub links: Map<Key, Link>,
    pub meta: Map,
    pub relationships: Map<Key, Relationship>,
    // some fields omitted
}

A preexisting resource. Commonly found in the document of a response or PATCH request.

Both the id and type field must be present if an Object is deserialized. If you need to represent a resource object that does not already have an id, you can use NewObject. For more information, check out the resource objects section of the JSON API specification.

Equality

Objects are considered to be equal if they have the same id and kind.

use json_api::doc::Object;
use json_api::value::Key;

let person = "person".parse::<Key>()?;
let hero = "hero".parse::<Key>()?;

let mut bruce = Object::new(person.clone(), "🦇".to_owned());
let mut batman = Object::new(person.clone(), "🦇".to_owned());

bruce.attributes.insert("name".parse()?, "Bruce Wayne".into());
batman.attributes.insert("name".parse()?, "Batman".into());

// Bruce and Batman are equal because they have the same `id` and `kind`.
assert!(bruce == batman);

// Let's make Batman a "hero" instead of a "person".
batman.kind = hero.clone();

// Bruce and Batman are no longer equal.
assert!(bruce != batman);

Since an Identifier is a subset of Object with fields necessary for identification, you can compare the two.

use json_api::doc::Identifier;
assert!(Identifier::from(&batman) == batman);

Hashing

Similar to how equality works, object's are hashed by their id and kind. This allows for easy and efficient deduplication when embedding related resources in a response.

Note: The following example is to demonstrate how object's are hashed. Deduplication occurs automatically if you use the json_api::to_doc function with a Resource that was implemented with the resource! macro.

use json_api::doc::Object;
use json_api::value::{Key, Set};

let person = "person".parse::<Key>()?;
let hero = "hero".parse::<Key>()?;

let mut included = Set::new();

let mut diana = Object::new(person.clone(), "🛡".to_owned());
let mut wonder_woman = Object::new(person.clone(), "🛡".to_owned());

diana.attributes.insert("name".parse()?, "Diana Prince".into());
wonder_woman.attributes.insert("name".parse()?, "Wonder Woman".into());

included.insert(diana);
assert_eq!(included.len(), 1);

included.insert(wonder_woman.clone());
assert_eq!(included.len(), 1);

// Let's update Wonder Woman's kind to "hero" so we can embed her in the response.
wonder_woman.kind = hero.clone();

included.insert(wonder_woman.clone());
assert_eq!(included.len(), 2);

Fields

Contains some of the object's data. If this value of this field is empty, it will not be serialized. For more information, check out the attributes section of the JSON API specification.

A string that contains a unique identfier for this resource type (kind). For more information, check out the identification section of the JSON API specification.

Describes resources that share common attributes and relationships. This field is derived from the type field if the object is deserialized. For more information, check out the identification section of the JSON API specification.

Contains relevant links. If this value of this field is empty, it will not be serialized. For more information, check out the links section of the JSON API specification.

Non-standard meta information. If this value of this field is empty, it will not be serialized. For more information, check out the meta information section of the JSON API specification.

Describes relationships between this object and other resource objects. If this value of this field is empty, it will not be serialized. For more information, check out the relationships section of the JSON API specification.

Methods

impl Object
[src]

[src]

Returns a new Object.

Example

use json_api::doc::Object;
let mut obj = Object::new("users".parse()?, "1".to_owned());

Trait Implementations

impl Clone for Object
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Object
[src]

[src]

Formats the value using the given formatter.

impl Eq for Object
[src]

impl Hash for Object
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for Object
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl PartialEq<Identifier> for Object
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Render<Identifier> for Object
[src]

[src]

Attempts to render the given type as a document. Read more

impl Render<Object> for Object
[src]

[src]

Attempts to render the given type as a document. Read more

impl PrimaryData for Object
[src]

[src]