Struct teloxide_core::payloads::EditMessageLiveLocation
source · [−]pub struct EditMessageLiveLocation {
pub chat_id: Recipient,
pub message_id: MessageId,
pub latitude: f64,
pub longitude: f64,
pub horizontal_accuracy: Option<f64>,
pub heading: Option<u16>,
pub proximity_alert_radius: Option<u32>,
pub reply_markup: Option<ReplyMarkup>,
}Expand description
Use this method to edit live location messages. A location can be edited until its live_period expires or editing is explicitly disabled by a call to StopMessageLiveLocation. On success, the edited Message is returned.
See also: EditMessageLiveLocationInline
Fields
chat_id: RecipientUnique identifier for the target chat or username of the target channel (in the format @channelusername)
message_id: MessageIdIdentifier of the message to edit
latitude: f64Latitude of new location
longitude: f64Longitude of new location
horizontal_accuracy: Option<f64>The radius of uncertainty for the location, measured in meters; 0-1500
heading: Option<u16>For live locations, a direction in which the user is moving, in degrees. Must be between 1 and 360 if specified.
proximity_alert_radius: Option<u32>For live locations, a maximum distance for proximity alerts about approaching another chat member, in meters. Must be between 1 and 100000 if specified.
reply_markup: Option<ReplyMarkup>Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove reply keyboard or to force a reply from the user.
Implementations
Trait Implementations
sourceimpl Clone for EditMessageLiveLocation
impl Clone for EditMessageLiveLocation
sourcefn clone(&self) -> EditMessageLiveLocationⓘNotable traits for EditMessageLiveLocationimpl Payload for EditMessageLiveLocation type Output = Message;
fn clone(&self) -> EditMessageLiveLocationⓘNotable traits for EditMessageLiveLocationimpl Payload for EditMessageLiveLocation type Output = Message;
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresourceimpl Debug for EditMessageLiveLocation
impl Debug for EditMessageLiveLocation
sourceimpl PartialEq<EditMessageLiveLocation> for EditMessageLiveLocation
impl PartialEq<EditMessageLiveLocation> for EditMessageLiveLocation
sourcefn eq(&self, other: &EditMessageLiveLocation) -> bool
fn eq(&self, other: &EditMessageLiveLocation) -> bool
sourceimpl Payload for EditMessageLiveLocation
impl Payload for EditMessageLiveLocation
sourcefn timeout_hint(&self) -> Option<Duration>
fn timeout_hint(&self) -> Option<Duration>
GetUpdates with
big timeout), the minimum timeout that should be used. Read more