#[non_exhaustive]pub struct BeaconInfoEventContent {
    pub description: Option<String>,
    pub live: bool,
    pub ts: MilliSecondsSinceUnixEpoch,
    pub timeout: Duration,
    pub asset: AssetContent,
}Available on crate feature 
events only.Expand description
The content of a beacon_info state.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.description: Option<String>The description of the location.
It should be used to label the location on a map.
live: boolWhether the user starts sharing their location.
ts: MilliSecondsSinceUnixEpochThe time when location sharing started.
timeout: DurationThe duration that the location sharing will be live.
Meaning that the location will stop being shared at ts + timeout.
asset: AssetContentThe asset that this message refers to.
Implementations§
Source§impl BeaconInfoEventContent
 
impl BeaconInfoEventContent
Sourcepub fn new(
    description: Option<String>,
    timeout: Duration,
    live: bool,
    ts: Option<MilliSecondsSinceUnixEpoch>,
) -> BeaconInfoEventContent
 
pub fn new( description: Option<String>, timeout: Duration, live: bool, ts: Option<MilliSecondsSinceUnixEpoch>, ) -> BeaconInfoEventContent
Creates a new BeaconInfoEventContent with the given description, live, timeout and
optional ts. If ts is None, the current time will be used.
Trait Implementations§
Source§impl Clone for BeaconInfoEventContent
 
impl Clone for BeaconInfoEventContent
Source§fn clone(&self) -> BeaconInfoEventContent
 
fn clone(&self) -> BeaconInfoEventContent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for BeaconInfoEventContent
 
impl Debug for BeaconInfoEventContent
Source§impl<'de> Deserialize<'de> for BeaconInfoEventContent
 
impl<'de> Deserialize<'de> for BeaconInfoEventContent
Source§fn deserialize<__D>(
    __deserializer: __D,
) -> Result<BeaconInfoEventContent, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(
    __deserializer: __D,
) -> Result<BeaconInfoEventContent, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<BeaconInfoEventContent> for AnyStateEventContent
 
impl From<BeaconInfoEventContent> for AnyStateEventContent
Source§fn from(c: BeaconInfoEventContent) -> AnyStateEventContent
 
fn from(c: BeaconInfoEventContent) -> AnyStateEventContent
Converts to this type from the input type.
Source§impl RedactContent for BeaconInfoEventContent
 
impl RedactContent for BeaconInfoEventContent
Source§type Redacted = RedactedBeaconInfoEventContent
 
type Redacted = RedactedBeaconInfoEventContent
The redacted form of the event’s content.
Source§fn redact(self, _rules: &RedactionRules) -> RedactedBeaconInfoEventContent
 
fn redact(self, _rules: &RedactionRules) -> RedactedBeaconInfoEventContent
Transform 
self into a redacted form (removing most or all fields) according to the spec. Read moreSource§impl Serialize for BeaconInfoEventContent
 
impl Serialize for BeaconInfoEventContent
Source§fn serialize<__S>(
    &self,
    __serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
 
fn serialize<__S>(
    &self,
    __serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl StateEventContent for BeaconInfoEventContent
 
impl StateEventContent for BeaconInfoEventContent
Source§type StateKey = OwnedUserId
 
type StateKey = OwnedUserId
The type of the event’s 
state_key field.Source§fn event_type(&self) -> StateEventType
 
fn event_type(&self) -> StateEventType
Get the event’s type, like 
m.room.name.Source§impl StaticStateEventContent for BeaconInfoEventContent
 
impl StaticStateEventContent for BeaconInfoEventContent
Source§type PossiblyRedacted = PossiblyRedactedBeaconInfoEventContent
 
type PossiblyRedacted = PossiblyRedactedBeaconInfoEventContent
The possibly redacted form of the event’s content.
Source§type Unsigned = StateUnsigned<<BeaconInfoEventContent as StaticStateEventContent>::PossiblyRedacted>
 
type Unsigned = StateUnsigned<<BeaconInfoEventContent as StaticStateEventContent>::PossiblyRedacted>
The type of the event’s 
unsigned field.impl JsonCastable<AnyStateEventContent> for BeaconInfoEventContent
impl JsonCastable<Map<String, Value>> for BeaconInfoEventContent
impl JsonCastable<PossiblyRedactedBeaconInfoEventContent> for BeaconInfoEventContent
impl JsonCastable<RedactedBeaconInfoEventContent> for BeaconInfoEventContent
Auto Trait Implementations§
impl Freeze for BeaconInfoEventContent
impl RefUnwindSafe for BeaconInfoEventContent
impl Send for BeaconInfoEventContent
impl Sync for BeaconInfoEventContent
impl Unpin for BeaconInfoEventContent
impl UnwindSafe for BeaconInfoEventContent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more