pub enum Message {
    UserRequest(UserRequest),
    UserOnlineRequest(UserOnlineRequest),
    UserList(UserList),
    UserUpdate(UserEntry),
    SecurityNumberRequest(SecurityNumberRequest),
    SecurityNumberResponse(SecurityNumberResponse),
}

Variants

UserRequest(UserRequest)

User Request returns a user list containing all users with their connectivity field set to either online or offline. The connections are not set.

UserOnlineRequest(UserOnlineRequest)

User Online Request returns a user list of all users currently online in the network. Each user has

UserList(UserList)

User List

Libqaul’s return message for ‘UserRequest’ and ‘UserOnlineRequest’, containing a list of UserEntry’s

UserUpdate(UserEntry)

User Update

Sent to libqaul to update the verification & blocked fields of a user. All other fields will be ignored.

SecurityNumberRequest(SecurityNumberRequest)

Security Number Request

Requests the specific security number for for the connection with this user.

SecurityNumberResponse(SecurityNumberResponse)

Security Number Response

Libqaul’s response containing the security number.

The security number contains 8 blocks of 5 digit numbers. They shall be rendered in two rows. If a number is smaller then five-digits, the missing digits shall be filled with leading zeros.

example rendering of security number: 13246 42369 46193 12484 12142 31101 09874 34545

Implementations

Encodes the message to a buffer.

Decodes an instance of the message from a buffer, and merges it into self.

Returns the encoded length of the message without a length delimiter.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.