Struct fractal_dto::v1::friends::PendingFriendRequestDTO[][src]

pub struct PendingFriendRequestDTO {
    pub connection_id: u64,
    pub origin_user: ProfileDTO,
    pub destination_user: ProfileDTO,
    pub message: Option<String>,
}

Struct for friend requests

Fields

Connection ID.

Origin user.

Destination user.

Message.

Trait Implementations

impl Clone for PendingFriendRequestDTO
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Encodable for PendingFriendRequestDTO
[src]

Serialize a value using an Encoder.

impl Decodable for PendingFriendRequestDTO
[src]

Deserialize a value using a Decoder.

impl DTO for PendingFriendRequestDTO
[src]

Auto Trait Implementations