Struct egg_mode::user::RelationLookup [] [src]

pub struct RelationLookup {
    pub name: String,
    pub screen_name: String,
    pub id: u64,
    pub connections: Vec<Connection>,
}

Represents the relation the authenticated user has to a given account.

This is returned by relation_lookup, as opposed to Relationship, which is returned by relation.

Fields

The display name of the target account.

The screen name of the target account.

The numeric ID of the target account.

The ways the target account is connected to the authenticated user.

If the target account has no relation to the authenticated user, this will not be empty; its only element will be None.

Trait Implementations

impl Debug for RelationLookup
[src]

[src]

Formats the value using the given formatter.