Struct google_firestore1_beta1::TransactionOptions[][src]

pub struct TransactionOptions {
    pub read_write: Option<ReadWrite>,
    pub read_only: Option<ReadOnly>,
}

Options for creating a new transaction.

This type is not used in any activity, and only used as part of another schema.

Fields

The transaction can be used for both read and write operations.

The transaction can only be used for read operations.

Trait Implementations

impl Default for TransactionOptions
[src]

Returns the "default value" for a type. Read more

impl Clone for TransactionOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TransactionOptions
[src]

Formats the value using the given formatter. Read more

impl Part for TransactionOptions
[src]

Auto Trait Implementations