Struct fcm::Message

source ·
pub struct Message<'a> {
    pub api_key: &'a str,
    pub body: MessageBody<'a>,
}
Expand description

Represents a FCM message. Construct the FCM message using various utility methods and finally send it.

Examples:

use fcm::MessageBuilder;

let mut builder = MessageBuilder::new("<FCM API Key>", "<registration id>");
builder.dry_run(true);
let message = builder.finalize();

Fields

api_key: &'a strbody: MessageBody<'a>

Trait Implementations

Formats the value using the given formatter. Read more

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.

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.