[][src]Struct google_proximitybeacon1_beta1::AttachmentInfo

pub struct AttachmentInfo {
    pub max_distance_meters: Option<f64>,
    pub data: Option<String>,
    pub namespaced_type: Option<String>,
}

A subset of attachment information served via the beaconinfo.getforobserved method, used when your users encounter your beacons.

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

Fields

max_distance_meters: Option<f64>

The distance away from the beacon at which this attachment should be delivered to a mobile app.

Setting this to a value greater than zero indicates that the app should behave as if the beacon is "seen" when the mobile device is less than this distance away from the beacon.

Different attachments on the same beacon can have different max distances.

Note that even though this value is expressed with fractional meter precision, real-world behavior is likley to be much less precise than one meter, due to the nature of current Bluetooth radio technology.

Optional. When not set or zero, the attachment should be delivered at the beacon's outer limit of detection.

data: Option<String>

An opaque data container for client-provided data.

namespaced_type: Option<String>

Specifies what kind of attachment this is. Tells a client how to interpret the data field. Format is namespace/type, for example scrupulous-wombat-12345/welcome-message

Trait Implementations

impl Clone for AttachmentInfo[src]

impl Debug for AttachmentInfo[src]

impl Default for AttachmentInfo[src]

impl<'de> Deserialize<'de> for AttachmentInfo[src]

impl Part for AttachmentInfo[src]

impl Serialize for AttachmentInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any